
{
    "id": "trespass-notice",
    "title": "Trespass Notice",
    "description": "Issue a formal trespass notice.",
    "icon": "Ban",
    "icon_color": "#ef4444",
    "output_title": "TRESPASS NOTICE - {{trespass_property}}",
    "is_html_output": true,
    "custom_button_text": "Open MDC Record",
    "custom_button_link": "https://mdc.gta.world/record/{{suspect_name}}",
    "custom_button_replace_spaces": true,
    "output": "<table style=\"width:100%;font-family:'Times New Roman',serif;border-collapse:collapse;border:4px solid black;background-color:white;color:black;\"><tbody><tr><td colspan=\"3\" style=\"text-align:center;padding-bottom:2rem\"><h1 style=\"font-family:Arial,sans-serif;font-size:2rem;font-weight:700;text-transform:uppercase;margin:0\">COUNTY OF LOS SANTOS</h1><h2 style=\"font-family:Arial,sans-serif;font-size:1.5rem;font-weight:600;margin:0\">Trespass Notice</h2></td></tr><tr><td colspan=\"3\" style=\"border-top:2px solid black;padding:.5rem\"><h3 style=\"font-family:Arial,sans-serif;font-weight:700;font-size:1.125rem;margin-bottom:.5rem\">1. GENERAL INFORMATION</h3><table style=\"width:100%;border-collapse:collapse\"><tbody><tr><td style=\"border:1px solid black;padding:.5rem;width:33.33%\"><strong style=\"font-family:Arial,sans-serif\">A. DATE:</strong> {{general.date}}</td><td style=\"border:1px solid black;padding:.5rem;width:33.33%\"><strong style=\"font-family:Arial,sans-serif\">B. TIME (24HR):</strong> {{general.time}}</td><td style=\"border:1px solid black;padding:.5rem;width:33.33%\"><strong style=\"font-family:Arial,sans-serif\">C. CALLSIGN:</strong> {{general.callSign}}</td></tr></tbody></table></td></tr><tr><td colspan=\"3\" style=\"border-top:2px solid black;padding:.5rem\"><h3 style=\"font-family:Arial,sans-serif;font-weight:700;font-size:1.125rem;margin-bottom:.5rem\">2. OFFICER INFORMATION</h3><table style=\"width:100%;border-collapse:collapse\"><tbody>{{#each officers}}<tr><td style=\"border:1px solid black;padding:.5rem;width:41.66%\"><strong style=\"font-family:Arial,sans-serif\">A. OFFICER NAME:</strong> {{this.name}}</td><td style=\"border:1px solid black;padding:.5rem;width:33.33%\"><strong style=\"font-family:Arial,sans-serif\">B. RANK:</strong> {{this.rank}}</td><td style=\"border:1px solid black;padding:.5rem;width:25%\"><strong style=\"font-family:Arial,sans-serif\">C. BADGE:</strong> #{{this.badgeNumber}}</td></tr>{{/each}}</tbody></table></td></tr><tr><td colspan=\"3\" style=\"border-top:2px solid black;padding:.5rem\"><h3 style=\"font-family:Arial,sans-serif;font-weight:700;font-size:1.125rem;margin-bottom:.5rem\">3. LOCATION DETAILS</h3><table style=\"width:100%;border-collapse:collapse\"><tbody><tr><td style=\"border:1px solid black;padding:.5rem;width:100%\"><strong style=\"font-family:Arial,sans-serif\">A. PROPERTY:</strong> {{trespass_property}}</td></tr></tbody></table></td></tr><tr><td colspan=\"3\" style=\"border-top:2px solid black;padding:.5rem\"><h3 style=\"font-family:Arial,sans-serif;font-weight:700;font-size:1.125rem;margin-bottom:.5rem\">4. TRESPASS DETAILS</h3><table style=\"width:100%;border-collapse:collapse\"><tbody><tr><td style=\"border:1px solid black;padding:.5rem;width:50%\"><strong style=\"font-family:Arial,sans-serif\">A. TRESPASSED INDIVIDUAL:</strong> {{suspect_name}}</td><td style=\"border:1px solid black;padding:.5rem;width:50%\"><strong style=\"font-family:Arial,sans-serif\">B. DURATION OF TRESPASS:</strong> {{trespass_duration}}</td></tr><tr><td style=\"border:1px solid black;padding:.5rem;width:50%\"><strong style=\"font-family:Arial,sans-serif\">C. GENDER:</strong> {{suspect_gender}}</td><td style=\"border:1px solid black;padding:.5rem;width:50%\"><strong style=\"font-family:Arial,sans-serif\">D. RACE:</strong> {{suspect_race}}</td></tr><tr><td colspan=\"3\" style=\"border:1px solid black;padding:.5rem\"><strong style=\"font-family:Arial,sans-serif\">E. AGE:</strong> {{suspect_age}}</td></tr><tr><td style=\"border:1px solid black;padding:.5rem;width:50%\"><strong style=\"font-family:Arial,sans-serif\">F. MANAGER/OWNER ON BEHALF OF:</strong> {{manager_name}}</td><td style=\"border:1px solid black;padding:.5rem;width:50%\"><strong style=\"font-family:Arial,sans-serif\">G. MANAGER/OWNER PHONE:</strong> {{manager_phone}}</td></tr></tbody></table></td></tr><tr><td colspan=\"3\" style=\"border-top:2px solid black;padding:.5rem\"><p style=\"font-family:'Times New Roman',serif;text-align:justify\">This letter serves as official notification that you, <strong>{{suspect_name}}</strong>, are hereby trespassed from the property located at <strong>{{trespass_property}}</strong>. This notice is effective immediately and will remain in effect for the duration of <strong>{{trespass_duration}}</strong>. Your presence on the aforementioned property from this date forward will be deemed unlawful and may result in your arrest and prosecution under applicable state and local laws. This notice has been issued by me, {{#each officers}}<strong>{{this.rank}} {{this.name}}</strong>{{#unless @last}}, {{/unless}}{{/each}}, on behalf of the property management represented by <strong>{{manager_name}}</strong>.</p></td></tr></tbody></table>",
    "form": [
        { "type": "hidden", "name": "generatorType", "value": "TrespassNotice" },
        { "type": "section", "title": "General Section" },
        { "type": "general", "name": "general" },
        { "type": "section", "title": "Officer Section" },
        { "type": "officer", "name": "officers", "showBadgeNumber": true },
        { "type": "section", "title": "Trespass Details" },
        { 
            "type": "group", 
            "fields": [
                { "type": "text", "name": "suspect_name", "label": "Suspect's Full Name", "placeholder": "Firstname Lastname", "required": true },
                { "type": "text", "name": "trespass_duration", "label": "Duration of Trespass", "placeholder": "e.g., 24 Hours, Indefinitely", "required": true }
            ] 
        },
        { 
            "type": "group", 
            "fields": [
                { "type": "dropdown", "name": "suspect_gender", "label": "Gender", "placeholder": "Select Gender", "options": ["Male", "Female", "Non-binary"] },
                { "type": "text", "name": "suspect_race", "label": "Race", "placeholder": "e.g. Caucasian" },
                { "type": "text", "name": "suspect_age", "label": "Age", "placeholder": "e.g. 25" }
            ] 
        },
        { "type": "text", "name": "trespass_property", "label": "Property", "placeholder": "e.g., 1003 Mission Row Property", "required": true },
        { "type": "group", "fields": [
                { "type": "text", "name": "manager_name", "label": "Manager's Full Name", "placeholder": "Firstname Lastname", "required": true },
                { "type": "text", "name": "manager_phone", "label": "Manager's Phone Number", "placeholder": "###-###-###", "required": true }
            ]
        }
    ],
    "countyCityStipulation": true
}
