> For the complete documentation index, see [llms.txt](https://docs.stevoscripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stevoscripts.com/paid-scripts/stevo_dmv/exports.md).

# Exports

## Server Exports&#x20;

### **isVehicleRegistered**

<pre class="language-lua" data-title="Example Usage"><code class="lang-lua">
local isVehicleRegistered, formattedMessage = exports.stevo_dmv:IsVehicleRegistered(plate) 

<strong>--- IsVehicleRegistered = string or boolean
</strong>--- formattedMessage = string or 

if not isVehicleRegistered then 
 -- returns false if no vehicle data is availible
end 

if isVehicleRegistered == 'valid' then 
 -- returns 'valid' if the registration is valid
 -- formattedMessage will display Valid until %s of %s %d
end 

if isVehicleRegistered == 'expired' then 
-- returns 'expired' if the registration is expired
 -- formattedMessage will display Expired on %s of %s %d
end

if isVehicleRegistered == 'notregistered' then 
 -- returns 'notregistered' if the vehicle is not registered yet.
end

</code></pre>
