
	<div id="termsModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="termsModalLabel" aria-hidden="true">
		<div class="modal-header">
			<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
			<h3 id="myModalLabel">Submit Reservation</h3>
		</div>
		<div class="modal-body">
			<p>Please note: USC Transportation is currently upgrading its parking systems. Moving forward, we will require a minimum processing time of 3-4 business days for standard 
                Parking Reservation requests. For large events (50 vehicles or more), the minimum processing time is 7-10 business days. 
                Failure to meet this allowance may require guests to pay for alternative parking using our Text2Park system.</p>
			<p>
				<input type="checkbox" id="_tsp_accept_reservation_terms" name="_tsp_accept_reservation_terms" />
				<label for="_tsp_accept_reservation_terms" id="_tsp_accept_reservation_terms_label" >I have read and agree to these terms</label>
			</p>
		</div>
		<div class="modal-footer">
			<button type="button" class="btn terms-cancel-button" data-dismiss="modal" aria-hidden="true">Close</button>
			<button type="button" class="btn btn-primary terms-ok-button" disabled>Submit</button>
		</div>
	</div>

	<style>
		#_tsp_accept_reservation_terms_label{
			display:inline-block;
		}
		.modal-footer .btn.terms-cancel-button{
			padding: 0px 28px;
			color: #fff;
			background-image: none;
			background-color: #5b5b5b;
			border: none;
			height: 40px;
			font-family: 'Roboto', sans-serif;
			font-weight: 300;
			border-radius: 0;
			font-size: 20px;
  			font-size: 1.25rem;
		}
		.modal-footer .btn.terms-ok-button{
			padding: 0px 28px;
			color: #fff;
			background-color: #990000;
			background-image: none;
			border: none;
			height: 40px;
			font-family: 'Roboto', sans-serif;
			font-weight: 300;
			border-radius: 0;
			font-size: 20px;
  			font-size: 1.25rem;
		}
        

        .verify-isd {
            width: auto;background-color: #900;outline: 0;padding: 8px 12px;
            color: #FFF;border: 0; text-decoration:none!important;
        }
        .verify-isd:hover, .verify-isd:active, .verify-isd:visited {color:#FFF;text-decoration:none!important;} 
        span.isd-verified {border:1px solid #008000;color:#008000;padding:4px;display:inline-block;margin-top:4px;}
        a#check-isd {color: #FFF;}

        .gravity-theme.ui-datepicker .ui-datepicker-header select option {color: #585E6A!important}
	</style>
	
    <script type="text/javascript">
        //
        document.addEventListener("DOMContentLoaded", (event) => {
            // select boxes
            const req_campus= document.querySelector('.req-campus select.gfield_select');
            const req_lots  = document.querySelector('.req-structure select.gfield_select');
            const req_gates = document.querySelector('.req-entrance select.gfield_select');
  
            // Lots values to load
            const upcLots   = ["Royal St. Structure", "Downey Way Structure",  "McCarthy Way Structure", "Grand Ave. Structure", "Figueroa St. Structure"];
            const hscLots   = ["Biggy Structure"];
        
            // Gates values
            let gateOptions = [];

            // selected inputs, gets values from POSTed form inputs
            let selCampus = '';
            let selLot    = '';
            let selGate   = '';

            
            // load Lots based on the Campus selection
            switch (selCampus) {
                case 'upc':
                    let upcOptions = upcLots.map( e=>{
                        return (selLot==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    req_lots.innerHTML = '<option value="">Select a Structure</option>' + upcOptions.join('');
                    break;
                case 'hsc':
                    let hscOptions = hscLots.map( e=>{
                        return (selLot==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    req_lots.innerHTML = '<option value="">Select a Structure</option>' + hscOptions.join('');
                    break;
                default:
                    //
            }  

            // load Gates based on Structure/Lots selection
            switch (selLot) {
                case 'Royal St. Structure':
                    gateOptions = ["Royal Street Entrance (Closed Weekends and Holidays)", "McClintock Ave. Entrance (24 hrs)"].map(e=>{
                        return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    break;
                case 'Downey Way Structure':
                    gateOptions = ["McClintock Ave. Entrance (24 hrs)", "Watt Way Entrance (Closed Weekends and Holidays)", "Downey Way Entrance"].map(e=>{
                        return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    break;
                case 'McCarthy Way Structure':
                    gateOptions = ["McCarthy Way Entrance (24 hrs)"].map(e=>{
                        return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    break;
                case 'Grand Ave. Structure':
                    gateOptions = ["Grand Ave. Structure (Closed Weekends and Holidays)"].map(e=>{
                        return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    break;
                case 'Figueroa St. Structure':
                    gateOptions = ["Figueroa St. Structure (Closed Weekends and Holidays)"].map(e=>{
                        return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    break;
                case 'Biggy Structure':
                    gateOptions = ["HSC", "Biggy"].map(e=>{
                        return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                    });
                    break;
                default:
                    //
            }  

            // set Gates/Entrances selection
            if (req_gates.length > 0)  req_gates.innerHTML = '<option value="">Select an Entrance</option>' + gateOptions.join('');

            // Campus selector clicked
            req_campus.addEventListener('click', function() {
                switch (req_campus.options[req_campus.selectedIndex].value) {
                    case 'upc':
                        let upcOptions = upcLots.map( e=>{ return `<option value="${e}">${e}</option>` } );
                        req_lots.innerHTML = '<option value="">Select a Structure</option>' + upcOptions.join('');
                        break;
                    case 'hsc':
                        let hscOptions = hscLots.map( e=>{ return `<option value="${e}">${e}</option>` } );
                        req_lots.innerHTML = '<option value="">Select a Structure</option>' + hscOptions.join('');
                        break;
                    default:
                        req_lots.innerHTML  = '<option value="">Select a Structure</option>';
                        req_gates.innerHTML = '<option value="">Select an Entrance</option>';
                }  
            });

            // Structure selector clicked
            req_lots.addEventListener('click', function() {
                let selectedOption = req_lots.querySelector('option[selected]');

                // select it
                if (selectedOption) selectedOption.removeAttribute('selected');
                req_lots.options[req_lots.selectedIndex].defaultSelected = true;

                // populate Entrances based on Structure selected
                switch (req_lots.options[req_lots.selectedIndex].value) {
                    case 'Royal St. Structure':
                        gateOptions = ["Royal Street Entrance (Closed Weekends and Holidays)", "McClintock Ave. Entrance (24 hrs)"].map(e=>{
                            return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                        });
                        break;
                    case 'Downey Way Structure':
                        gateOptions = ["McClintock Ave. Entrance (24 hrs)", "Watt Way Entrance (Closed Weekends and Holidays)", "Downey Way Entrance"].map(e=>{
                            return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                        });
                        break;
                    case 'McCarthy Way Structure':
                        gateOptions = ["McCarthy Way Entrance (24 hrs)"].map(e=>{
                            return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                        });
                        break;
                    case 'Grand Ave. Structure':
                        gateOptions = ["Grand Ave. Structure (Closed Weekends and Holidays)"].map(e=>{
                            return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                        });
                        break;
                    case 'Figueroa St. Structure':
                        gateOptions = ["Figueroa St. Structure (Closed Weekends and Holidays)"].map(e=>{
                            return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                        });
                        break;
                    case 'Biggy Structure':
                        gateOptions = ["HSC", "Biggy"].map(e=>{
                            return (selGate==e) ? `<option value="${e}" selected>${e}</option>` : `<option value="${e}">${e}</option>`;
                        });
                        break;
                    default:
                        //
                }  

                // set Entrance selection
                req_gates.innerHTML = '<option value="">Select an Entrance</option>' + gateOptions.join('');
            });

            // Entrance selector clicked
            req_gates.addEventListener('click', function() {
                let selectedOption = req_gates.querySelector('option[selected]');

                // select it
                if (selectedOption) selectedOption.removeAttribute('selected');
                req_gates.options[req_gates.selectedIndex].defaultSelected = true;
            });
        
        });
    </script>
    {"id":345,"date":"2013-11-21T23:05:15","date_gmt":"2013-11-21T23:05:15","guid":{"rendered":"https:\/\/transnet.usc.edu\/?page_id=345"},"modified":"2026-04-30T18:06:53","modified_gmt":"2026-05-01T01:06:53","slug":"parking-reservations","status":"publish","type":"page","link":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/","title":{"rendered":"Parking Reservations"},"content":{"rendered":"<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n\/* ]]> *\/\n<\/script>\n\r\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework form-parking-reservations_wrapper' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_15' style='display:none'>\r\n                        <div class='gform_heading'>\r\n                            <p class='gform_description'><\/p>\r\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\r\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_15' class='form-parking-reservations' action='\/index.php\/wp-json\/wp\/v2\/pages\/345' data-formid='15' novalidate><input type=\"hidden\" name=\"gpuid_existing_value_23\" id=\"gpuid_existing_value_23\" value=\"33d1154948be48168414fb7301f973b1\" \/>\r\n                        <div class='gform-body gform_body'><div id='gform_fields_15' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_15_37\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full tsp-reservations-instructions gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p style=\"text-align: center;\"><strong>Welcome to the USC Transportation Online Parking Reservation System<\/strong><\/p>\n<p style=\"text-align: center;\"><strong>Parking Reservation Portal hours:<\/strong><\/p>\n<p style=\"text-align: center;\"><strong>Monday\u2013Friday: 7:00 AM \u2013 5:00 PM<br \/>\nSaturday\u2013Sunday: 9:00 AM \u2013 1:00 PM<br \/>\nClosed on holidays<\/strong><\/p>\n<p><strong>University Parking Policy: <\/strong>USC Departments are allowed to provide prepaid daily parking for speakers and invited guests, to the extent that individual departmental budgets allow, in accordance with the procedures detailed below. Please contact the Parking Reservations team at\u00a0<a href=\"mailto:parkrsvp@usc.edu\">parkrsvp@usc.edu<\/a>\u00a0if you have any questions.<\/p>\n<p><strong><u>How to Request a Parking Reservation Using a Departmental ISD<\/u><\/strong><\/p>\n<p>Please create an ISD for the corresponding fiscal year through Workday utilizing the ISPs below. For guidance on how to create an ISD, please contact your departments accounting team.<\/p>\n<p>&nbsp;<\/p>\n<ul>\n<li><strong>University Park Campus:<\/strong><br \/>\nUPC Permits and Reservations \u2013 ISP &#8211; SP \u2013 123 Auxiliaries- Transportation- UPC Operations<\/li>\n<li><strong>Health Sciences Campus:<\/strong><br \/>\nHSC Permits and Reservations &#8211; ISP \u2013 SP &#8211; 124 Auxiliaries- Transportation- HSC Operations<\/li>\n<\/ul>\n<p>After creation, ISD\u2019s may take 24-48 hours to be verified through our system.<\/p>\n<p>If you have already created an ISD through Workday, please enter the ISD number and select \u201cverify\u201d. If your ISD is not found, please contact <a href=\"mailto:parkrsvp@usc.edu\">parkrsvp@usc.edu<\/a> for assistance.<\/p>\n<p>*<strong>For<\/strong> <strong>Existing Tenant Account(s):<\/strong> Enter the tenant account name and include the parking location so we can locate your Off-Street account.<\/p>\n<p><strong>Please Note:<\/strong> USC Transportation has moved to a paperless system for all Parking Reservation requests. Physical parking passes will no longer be issued at our booths. Once a request is submitted, our team will review and process it digitally. Upon approval, you will receive an email containing your confirmation and detailed digital parking instructions. <strong>We will require a minimum processing time of 3-5 business days<\/strong> for standard Parking Reservation requests. Failure to meet this allowance may require guests to pay for alternative parking using our Text2Park system.<\/p>\n<\/div><div id=\"field_15_1\" class=\"gfield gfield--type-select gfield--input-type-select pm field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_1'>Payment Method<\/label><div class='ginput_container ginput_container_select'><select name='input_1' id='input_15_1' class='large gfield_select'     aria-invalid=\"false\" ><option value='isd' >Internal Service Delivery<\/option><option value='collect' >Collect from Guest<\/option><\/select><\/div><\/div><div id=\"field_15_3\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full isd-number gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_3'>ISD Number<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_15_3' type='text' value='' class='large'  aria-describedby=\"gfield_description_15_3\"   aria-required=\"true\" aria-invalid=\"false\"   \/> <a id=\"check-isd\" class=\"verify-isd\" data-formid=\"15\" data-fieldid=\"3\" href=\"#\" target=\"_blank\">Verify ISD<\/a><\/div><div class='gfield_description' id='gfield_description_15_3'>Please enter your Internal Service Delivery in the following format: ISD-XXXXXX<\/div><\/div><fieldset id=\"field_15_4\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_hidden tenant-account gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Do you have a Tenant Account?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_15_4'>\r\n\t\t\t<div class='gchoice gchoice_15_4_0'>\r\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='yes'  id='choice_15_4_0' onchange='gformToggleRadioOther( this )'    \/>\r\n\t\t\t\t\t<label for='choice_15_4_0' id='label_15_4_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\r\n\t\t\t<\/div>\r\n\t\t\t<div class='gchoice gchoice_15_4_1'>\r\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='no'  id='choice_15_4_1' onchange='gformToggleRadioOther( this )'    \/>\r\n\t\t\t\t\t<label for='choice_15_4_1' id='label_15_4_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\r\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_15_5\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_5'>Tenant Name<\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_15_5' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_6\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_6'>Tenant Location<\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_15_6' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_7\" class=\"gfield gfield--type-fileupload gfield--input-type-fileupload gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_7'>Upload File<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_15_7'>Please <a href=\"https:\/\/transnet.usc.edu\/wp-content\/plugins\/transnet-plugin\/forms\/Parking-Request-Form.xlsx\">download<\/a> the parking form and upload<\/div><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='157286400' \/><input name='input_7' id='input_15_7' type='file' class='large' aria-describedby=\"gfield_upload_rules_15_7 gfield_description_15_7\" onchange='javascript:gformValidateFileSize( this, 157286400 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_15_7'>Accepted file types: xlsx, Max. file size: 150 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_15_7'><\/div> <\/div><\/div><div id=\"field_15_8\" class=\"gfield gfield--type-select gfield--input-type-select req-campus gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_8'>Requested Campus<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_8' id='input_15_8' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected'>Select a Campus<\/option><option value='upc' >University Park Campus<\/option><option value='hsc' >Health Sciences Campus<\/option><\/select><\/div><\/div><div id=\"field_15_9\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full req-structure gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_9'>Requested Structure<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_9' id='input_15_9' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected'>Select a Structure<\/option><\/select><\/div><\/div><div id=\"field_15_10\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full req-entrance gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_10'>Requested Entrance<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span> (<a href=\"\/index.php\/about-us\/entrance-hours\/\" target=\"_blank\">Hours<\/a>)<\/label><div class='ginput_container ginput_container_select'><select name='input_10' id='input_15_10' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' selected='selected'>Select an Entrance<\/option><\/select><\/div><\/div><div id=\"field_15_11\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-full begin-date gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_11'>Begin Date<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_date'>\r\n                            <input name='input_11' id='input_15_11' type='text' value='' class='datepicker gform-datepicker mdy datepicker_no_icon gdatepicker-no-icon'   placeholder='mm\/dd\/yyyy' aria-describedby=\"input_15_11_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\r\n                            <span id='input_15_11_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\r\n                        <\/div>\r\n                        <input type='hidden' id='gforms_calendar_icon_input_15_11' class='gform_hidden' value='https:\/\/transnet.usc.edu\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><div id=\"field_15_12\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-full end-date gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_12'>End Date<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_date'>\r\n                            <input name='input_12' id='input_15_12' type='text' value='' class='datepicker gform-datepicker mdy datepicker_no_icon gdatepicker-no-icon'   placeholder='mm\/dd\/yyyy' aria-describedby=\"input_15_12_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\r\n                            <span id='input_15_12_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\r\n                        <\/div>\r\n                        <input type='hidden' id='gforms_calendar_icon_input_15_12' class='gform_hidden' value='https:\/\/transnet.usc.edu\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><fieldset id=\"field_15_13\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Is This A Weekend Or Holiday?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_15_13'>\r\n\t\t\t<div class='gchoice gchoice_15_13_0'>\r\n\t\t\t\t\t<input class='gfield-choice-input' name='input_13' type='radio' value='yes'  id='choice_15_13_0' onchange='gformToggleRadioOther( this )'    \/>\r\n\t\t\t\t\t<label for='choice_15_13_0' id='label_15_13_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\r\n\t\t\t<\/div>\r\n\t\t\t<div class='gchoice gchoice_15_13_1'>\r\n\t\t\t\t\t<input class='gfield-choice-input' name='input_13' type='radio' value='no'  id='choice_15_13_1' onchange='gformToggleRadioOther( this )'    \/>\r\n\t\t\t\t\t<label for='choice_15_13_1' id='label_15_13_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\r\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_15_34\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-quarter begin-time-hour field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_34'>Begin Time<\/label><div class='ginput_container ginput_container_select'><select name='input_34' id='input_15_34' class='large gfield_select'     aria-invalid=\"false\" ><option value='01' >01<\/option><option value='02' >02<\/option><option value='03' >03<\/option><option value='04' >04<\/option><option value='05' >05<\/option><option value='06' selected='selected'>06<\/option><option value='07' >07<\/option><option value='08' >08<\/option><option value='09' >09<\/option><option value='10' >10<\/option><option value='11' >11<\/option><option value='12' >12<\/option><\/select><\/div><\/div><div id=\"field_15_33\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-quarter begin-time-min field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_33'>BeginTime_Min<\/label><div class='ginput_container ginput_container_select'><select name='input_33' id='input_15_33' class='large gfield_select'     aria-invalid=\"false\" ><option value='00' selected='selected'>00<\/option><option value='15' >15<\/option><option value='30' >30<\/option><option value='45' >45<\/option><\/select><\/div><\/div><fieldset id=\"field_15_36\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-quarter begin-time-ampm field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >BeginTime_AMPM<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_15_36'>\r\n\t\t\t<div class='gchoice gchoice_15_36_0'>\r\n\t\t\t\t\t<input class='gfield-choice-input' name='input_36' type='radio' value='AM' checked='checked' id='choice_15_36_0' onchange='gformToggleRadioOther( this )'    \/>\r\n\t\t\t\t\t<label for='choice_15_36_0' id='label_15_36_0' class='gform-field-label gform-field-label--type-inline'>AM<\/label>\r\n\t\t\t<\/div>\r\n\t\t\t<div class='gchoice gchoice_15_36_1'>\r\n\t\t\t\t\t<input class='gfield-choice-input' name='input_36' type='radio' value='PM'  id='choice_15_36_1' onchange='gformToggleRadioOther( this )'    \/>\r\n\t\t\t\t\t<label for='choice_15_36_1' id='label_15_36_1' class='gform-field-label gform-field-label--type-inline'>PM<\/label>\r\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_15_16\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_16'>Contact First and Last Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_15_16' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_17\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_17'>Department<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_17' id='input_15_17' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_18\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_18'>Contact Phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_18' id='input_15_18' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_19\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_19'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\r\n                            <input name='input_19' id='input_15_19' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\r\n                        <\/div><\/div><div id=\"field_15_20\" class=\"gfield gfield--type-number gfield--input-type-number gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_20'>Total Vehicle Passes Per Day<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_20' id='input_15_20' type='number' step='any' min='1'  value='' class='large'     aria-required=\"true\" aria-invalid=\"false\" aria-describedby=\"gfield_instruction_15_20\" \/><div class='gfield_description instruction ' id='gfield_instruction_15_20'>Please enter a number greater than or equal to <strong>1<\/strong>.<\/div><\/div><\/div><div id=\"field_15_21\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_21'>Event Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_21' id='input_15_21' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_38\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_38'>Remarks<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_38' id='input_15_38' class='textarea medium'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_15_23\" class=\"gfield gfield--type-uid gfield--input-type-uid field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><label class='gfield_label gform-field-label' for='input_15_23'>Unique ID<\/label><div class='ginput_container ginput_container_hidden'><input readonly='readonly' name='input_23' id='input_15_23' type='hidden' value=''  \/><\/div><\/div><div id=\"field_15_25\" class=\"gfield gfield--type-text gfield--input-type-text _is_isd_valid field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_15_25'>isd_valid (x)<\/label><div class='ginput_container ginput_container_text'><input name='input_25' id='input_15_25' type='text' value='0' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_15_26\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full _is_tsp_terms_accepted field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_15_26'>tsp_terms_accepted (x)<\/label><div class='ginput_container ginput_container_text'><input name='input_26' id='input_15_26' type='text' value='0' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><\/div><\/div>\r\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_15' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> \r\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_15' value='postback' \/>\r\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_15' id='gform_theme_15' value='gravity-theme' \/>\r\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_15' id='gform_style_settings_15' value='[]' \/>\r\n            <input type='hidden' class='gform_hidden' name='is_submit_15' value='1' \/>\r\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='15' \/>\r\n            \r\n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='XdgvrDaiy3pkDKz\/rHf2UeBeyDIb6t\/6X7MRJFvVGDsYO270BU0oraQ\/\/3L1g8\/Mh7bDAlZpmLznvrx1\/WVyg3hCvYFlAkAhafsjq+13xC5zmS8=' \/>\r\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\r\n            <input type='hidden' class='gform_hidden' name='state_15' value='WyJ7XCIxXCI6W1wiNTE0YzFiZDM0OTk1NzlmMWRiMjc2ZjBhMzgzNDgxNWZcIixcImQ0N2EzODkyNGM4YTQxNzJjZDQ4ZjM4MTc4NDhiMjVlXCJdLFwiNFwiOltcIjZkOWIyYWZkNjkxODYyNDdlNzI4ZWQ3M2QzZjI4NTYwXCIsXCI2NjkwYWMxNmZmOTAxNmZhYmJiNzYwN2ExZDE2NTBlNVwiXSxcIjhcIjpbXCIzM2QxMTU0OTQ4YmU0ODE2ODQxNGZiNzMwMWY5NzNiMVwiLFwiNWE5ZWQ3YTg3OTc0ZTcxNmFmMDE4MGViZmFlMGYwMWVcIixcIjc5MmMwNmU1ZTBjN2NmNGMyOWU4NjE4NGEzMjBhNTZmXCJdLFwiMTNcIjpbXCI2ZDliMmFmZDY5MTg2MjQ3ZTcyOGVkNzNkM2YyODU2MFwiLFwiNjY5MGFjMTZmZjkwMTZmYWJiYjc2MDdhMWQxNjUwZTVcIl0sXCIzNFwiOltcIjM3YzlkMDUxYTY1NzA5NGU0M2I5MWYzY2M2ZWIxNzcxXCIsXCI4ODdkOGYwMzUyZmM1NTg5ZjBmMjM2ODNhYzAxYWZmZlwiLFwiOWZhMDAwYTA5YzA1NDc4ZWJiMzhkNGNmMTFkZTQxNDNcIixcImMwNjdkNDFlZDZjYTE3YWI0NDRmNDMwOTg4Y2EyNTY4XCIsXCI2NmFjNWNmZTkyN2FmMzI4NDM2MjZhYmQyZmQ5MmUwNlwiLFwiYzhiYmExZjQwZjEyNjFkNDYwOTk0MjI4MDIzMTM0YTRcIixcIjNkODhmNzM2YmNkYmJkYTkwODE3MzY4ZWY2NjNjNDk0XCIsXCI1NjdhZGI4Y2E2NWMzYTY1MTY3MDdlZGJkM2FiZDAyMFwiLFwiODY3YTVhYjIyODFhYjA0MTE0YmFjNGQ5YjM2ZThmNjFcIixcIjdlYzE5NTllY2UxNzE3MTlkNzEwN2I2YWIyZWViYWFjXCIsXCJlYzg0ODc1Y2JjZGZkNjQ1NzE2ZjM1NzI5Y2U2MzMzNlwiLFwiYzE3NTM5MjhhOTgxMGQxYmUzMzIxYWI5ZjZmYjU4NjVcIl0sXCIzM1wiOltcImNhZGEyYjcyZjMzODFiZjVhM2YyOTkyMmM0ODJkNmUyXCIsXCI5NjFlOGM2Zjg4YzVmYTAwZjRlN2EzNWZiMzhlODJjOFwiLFwiMWUyYWRhYjA5YjVkNGZjOWM3Y2Y0YzFlMmM2ZTYyYzRcIixcIjUwZDllYTY0Y2M0M2Q1YjIyMWJmZjc0NTkzMGVlY2RlXCJdLFwiMzZcIjpbXCI5ZWUyZGZkM2Y5NmRjOTgwNWZmOTUzYzU4NzJlMjE1Y1wiLFwiNGQ5ZDVkYWI2YTAwYmRjZTEyNDVkYWZhNjNkYTA4YzFcIl19IiwiMzU0NzExNDZmN2U4ZGFkYzkxY2UzZmM5NGU5ZjZiMzciXQ==' \/>\r\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_15' id='gform_target_page_number_15' value='0' \/>\r\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_15' id='gform_source_page_number_15' value='1' \/>\r\n            <input type='hidden' name='gform_field_values' value='' \/>\r\n            \r\n        <\/div>\r\n                        <\/form>\r\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 15, 'https:\/\/transnet.usc.edu\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_15').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_15');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_15').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_15').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_15').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_15').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_15').val();gformInitSpinner( 15, 'https:\/\/transnet.usc.edu\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [15, current_page]);window['gf_submitting_15'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_15').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [15]);window['gf_submitting_15'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_15').text());}else{jQuery('#gform_15').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"15\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_15\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_15\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_15\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 15, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><!--ninja_forms_display_form id--><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; &nbsp;<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-345","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Parking Reservations - USC Transportation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Parking Reservations - USC Transportation\" \/>\n<meta property=\"og:description\" content=\"&nbsp; &nbsp;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/\" \/>\n<meta property=\"og:site_name\" content=\"USC Transportation\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-01T01:06:53+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/transnet.usc.edu\\\/index.php\\\/parking-reservations\\\/\",\"url\":\"https:\\\/\\\/transnet.usc.edu\\\/index.php\\\/parking-reservations\\\/\",\"name\":\"Parking Reservations - USC Transportation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/transnet.usc.edu\\\/#website\"},\"datePublished\":\"2013-11-21T23:05:15+00:00\",\"dateModified\":\"2026-05-01T01:06:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/transnet.usc.edu\\\/index.php\\\/parking-reservations\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/transnet.usc.edu\\\/index.php\\\/parking-reservations\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/transnet.usc.edu\\\/index.php\\\/parking-reservations\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/transnet.usc.edu\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Parking Reservations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/transnet.usc.edu\\\/#website\",\"url\":\"https:\\\/\\\/transnet.usc.edu\\\/\",\"name\":\"USC Transportation\",\"description\":\"USC Auxiliary Services\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/transnet.usc.edu\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Parking Reservations - USC Transportation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/","og_locale":"en_US","og_type":"article","og_title":"Parking Reservations - USC Transportation","og_description":"&nbsp; &nbsp;","og_url":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/","og_site_name":"USC Transportation","article_modified_time":"2026-05-01T01:06:53+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/","url":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/","name":"Parking Reservations - USC Transportation","isPartOf":{"@id":"https:\/\/transnet.usc.edu\/#website"},"datePublished":"2013-11-21T23:05:15+00:00","dateModified":"2026-05-01T01:06:53+00:00","breadcrumb":{"@id":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/transnet.usc.edu\/index.php\/parking-reservations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/transnet.usc.edu\/"},{"@type":"ListItem","position":2,"name":"Parking Reservations"}]},{"@type":"WebSite","@id":"https:\/\/transnet.usc.edu\/#website","url":"https:\/\/transnet.usc.edu\/","name":"USC Transportation","description":"USC Auxiliary Services","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/transnet.usc.edu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/pages\/345","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/comments?post=345"}],"version-history":[{"count":52,"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/pages\/345\/revisions"}],"predecessor-version":[{"id":349725,"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/pages\/345\/revisions\/349725"}],"wp:attachment":[{"href":"https:\/\/transnet.usc.edu\/index.php\/wp-json\/wp\/v2\/media?parent=345"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}