{"id":691,"date":"2025-03-11T16:56:12","date_gmt":"2025-03-11T16:56:12","guid":{"rendered":"https:\/\/texas.ptaa.org\/mesquite\/?page_id=691"},"modified":"2025-03-11T19:29:27","modified_gmt":"2025-03-11T19:29:27","slug":"intent-of-return","status":"publish","type":"page","link":"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/","title":{"rendered":"Intent of Return"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"691\" class=\"elementor elementor-691\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb31461 e-flex e-con-boxed e-con e-parent\" data-id=\"bb31461\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-30bd1b1 elementor-widget elementor-widget-html\" data-id=\"30bd1b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <title>Intent to Return Form<\/title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\n\n  <style>\n    \/* Global font *\/\n    body {\n      margin: 0;\n      font-family: Arial, sans-serif;\n      background-color: #f1f1f1;\n    }\n\n    \/**********************************************************************\n     * Top Banner\n     **********************************************************************\/\n    .banner-container {\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n      background-color: #416ca3; \/* main accent color *\/\n      padding: 0.75rem 1rem;\n      color: #fff;\n    }\n    .banner-left {\n      display: flex;\n      align-items: center;\n      gap: 1rem;\n    }\n    .banner-left h1 {\n      margin: 0;\n      font-size: 1.4rem;\n      font-weight: 600;\n    }\n\n    \/**********************************************************************\n     * Intro text area\n     **********************************************************************\/\n    .intro-section {\n      background-color: #fff;\n      padding: 1.5rem 1rem;\n      margin: 0 auto;\n      max-width: 800px;\n    }\n    .intro-section p {\n      margin: 0.5rem 0;\n      line-height: 1.5;\n    }\n\n    \/**********************************************************************\n     * Main form container\n     **********************************************************************\/\n    .form-container {\n      max-width: 800px;\n      margin: 1rem auto 2rem auto;\n      background-color: #fff;\n      padding: 1.5rem;\n      border: 1px solid #ddd;\n      border-radius: 4px;\n    }\n    .form-container h2 {\n      margin-top: 0;\n      margin-bottom: 1rem;\n      font-size: 1.3rem;\n      color: #416ca3;\n      text-align: center;\n    }\n\n    \/**********************************************************************\n     * Field groups, labels, inputs\n     **********************************************************************\/\n    .form-group {\n      margin-bottom: 1rem;\n    }\n    .form-group label {\n      display: block;\n      margin-bottom: 0.4rem;\n      font-weight: bold;\n      color: #333;\n    }\n    .form-control {\n      width: 100%;\n      padding: 0.6rem;\n      border: 1px solid #ccc;\n      border-radius: 4px;\n      font-size: 1rem;\n      box-sizing: border-box;\n      transition: border-color 0.3s ease, box-shadow 0.3s ease;\n    }\n    .form-control:focus {\n      outline: none;\n      border-color: #FFD700; \/* gold accent *\/\n      box-shadow: 0 0 3px rgba(255,215,0,0.3);\n    }\n\n    .error-text {\n      color: red;\n      font-size: 0.85rem;\n      margin-top: 0.25rem;\n      display: none; \/* Shown via JS if you want real-time validation *\/\n    }\n\n    \/**********************************************************************\n     * Colored row styling (highlight row)\n     **********************************************************************\/\n    .highlight-row {\n      background-color: #e9f3fb; \/* Light, slightly bluish background *\/\n      padding: 1rem;\n      border-radius: 4px;\n      margin-bottom: 1rem;\n    }\n\n    \/* Four-column layout for the highlight row *\/\n    .four-col {\n      display: grid;\n      grid-template-columns: repeat(4, 1fr);\n      gap: 1rem;\n    }\n\n    \/**********************************************************************\n     * Two-column layout for certain sections\n     **********************************************************************\/\n    .two-col {\n      display: flex;\n      gap: 1rem;\n    }\n    .two-col .form-group {\n      flex: 1;\n      margin-bottom: 0;\n    }\n\n    \/**********************************************************************\n     * Radio row styling\n     **********************************************************************\/\n    .radio-group label {\n      font-weight: normal;\n      margin-right: 1rem;\n    }\n    .radio-group input {\n      margin-right: 0.25rem;\n    }\n\n    \/**********************************************************************\n     * Submit button\n     **********************************************************************\/\n    .submit-btn {\n      background-color: #416ca3;\n      color: #fff;\n      border: none;\n      border-radius: 4px;\n      padding: 0.7rem 1.2rem;\n      font-size: 1rem;\n      cursor: pointer;\n      transition: background 0.3s ease;\n    }\n    .submit-btn:hover {\n      background-color: #2f4b74;\n    }\n\n    \/* Success \/ Error messages *\/\n    .form-message {\n      display: none;\n      margin-top: 1rem;\n    }\n    .form-message.success {\n      background-color: #e0f5e0;\n      padding: 1rem;\n      border: 1px solid #8aca8a;\n      color: #2b672b;\n    }\n    .form-message.error {\n      background-color: #f8d7da;\n      padding: 1rem;\n      border: 1px solid #f5c6cb;\n      color: #721c24;\n    }\n\n    \/**********************************************************************\n     * Responsive adjustments\n     **********************************************************************\/\n    @media (max-width: 600px) {\n      .banner-container {\n        flex-direction: column;\n        align-items: flex-start;\n        gap: 0.5rem;\n      }\n      .banner-left h1 {\n        font-size: 1.1rem;\n      }\n      .intro-section {\n        padding: 1rem;\n      }\n      .form-container {\n        padding: 1rem;\n      }\n      .four-col {\n        grid-template-columns: 1fr;\n      }\n      .two-col {\n        flex-direction: column;\n      }\n    }\n  <\/style>\n<\/head>\n<body>\n\n  <!-- TOP BANNER -->\n  <div class=\"banner-container\">\n    <div class=\"banner-left\">\n      <h1>Intent to Return PTAA Mesquite Oates<\/h1>\n    <\/div>\n  <\/div>\n\n  <!-- INTRO SECTION -->\n  <div class=\"intro-section\">\n    <p>Dear PTAA Family,<\/p>\n    <p>\n      Plans for the upcoming school year are currently underway. In order to plan \n      for a successful school year, we need your assistance. Please complete \n      the following Intent to Return form (one per each current 5th\u201012th grade student). \n      This will allow us to determine your plans for the upcoming school year and \n      help us plan for an incredible educational experience for your student. \n      It has been a pleasure to serve you and look forward to a successful school year!\n    <\/p>\n  <\/div>\n\n  <!-- MAIN FORM -->\n  <div class=\"form-container\">\n    <form id=\"intentReturnForm\">\n      <!-- Hidden field (optional) -->\n      <input type=\"hidden\" name=\"source\" value=\"web_form\" \/>\n\n      <h2>Student & Submitter Information<\/h2>\n\n      <!-- STUDENT ID + FIRST NAME + LAST NAME + GRADE -->\n      <div class=\"highlight-row\">\n        <div class=\"four-col\">\n          <!-- STUDENT ID -->\n          <div class=\"form-group\">\n            <label for=\"studentID\">Student ID Number <span style=\"color:red\">*<\/span><\/label>\n            <input \n              type=\"text\" \n              id=\"studentID\" \n              name=\"student_id\" \n              class=\"form-control\" \n              placeholder=\"Enter Student ID\" \n              required \n            \/>\n            <div class=\"error-text\" id=\"studentIDError\">Value is required.<\/div>\n          <\/div>\n          <!-- STUDENT FIRST NAME -->\n          <div class=\"form-group\">\n            <label for=\"studentFirst\">Student First Name <span style=\"color:red\">*<\/span><\/label>\n            <input \n              type=\"text\" \n              id=\"studentFirst\" \n              name=\"student_first\" \n              class=\"form-control\" \n              placeholder=\"Enter Student's First Name\"\n              required\n            \/>\n          <\/div>\n          <!-- STUDENT LAST NAME -->\n          <div class=\"form-group\">\n            <label for=\"studentLast\">Student Last Name <span style=\"color:red\">*<\/span><\/label>\n            <input \n              type=\"text\" \n              id=\"studentLast\" \n              name=\"student_last\" \n              class=\"form-control\" \n              placeholder=\"Enter Student's Last Name\"\n              required\n            \/>\n          <\/div>\n          <!-- STUDENT GRADE (DROPDOWN 5\u201312) -->\n          <div class=\"form-group\">\n            <label for=\"studentGrade\">Grade <span style=\"color:red\">*<\/span><\/label>\n            <select \n              id=\"studentGrade\" \n              name=\"student_grade\" \n              class=\"form-control\"\n              required\n            >\n              <option value=\"\" disabled selected>-- Select Grade --<\/option>\n              <option value=\"5\">5<\/option>\n              <option value=\"6\">6<\/option>\n              <option value=\"7\">7<\/option>\n              <option value=\"8\">8<\/option>\n              <option value=\"9\">9<\/option>\n              <option value=\"10\">10<\/option>\n              <option value=\"11\">11<\/option>\n              <option value=\"12\">12<\/option>\n            <\/select>\n          <\/div>\n        <\/div>\n      <\/div>\n\n      <!-- SUBMITTER NAME + RELATIONSHIP -->\n      <div class=\"two-col\">\n        <div class=\"form-group\">\n          <label for=\"submitterName\">Full Name of Submitter <span style=\"color:red\">*<\/span><\/label>\n          <input \n            type=\"text\" \n            id=\"submitterName\" \n            name=\"submitter_name\" \n            class=\"form-control\" \n            placeholder=\"Enter your full name\" \n            required\n          \/>\n          <div class=\"error-text\" id=\"submitterNameError\">Value is required.<\/div>\n        <\/div>\n        <div class=\"form-group\">\n          <label for=\"relationship\">Relationship to Student <span style=\"color:red\">*<\/span><\/label>\n          <select \n            id=\"relationship\" \n            name=\"relationship\" \n            class=\"form-control\" \n            required\n          >\n            <option value=\"\" disabled selected>-- Select an option --<\/option>\n            <option value=\"Parent\">Parent<\/option>\n            <option value=\"Guardian\">Guardian<\/option>\n            <option value=\"Other\">Other<\/option>\n          <\/select>\n          <div class=\"error-text\" id=\"relationshipError\">Value is required.<\/div>\n        <\/div>\n      <\/div>\n\n      <!-- SUBMITTER EMAIL ADDRESS -->\n      <div class=\"form-group\">\n        <label for=\"submitterEmail\">Submitter Email Address <span style=\"color:red\">*<\/span><\/label>\n        <input\n          type=\"email\"\n          id=\"submitterEmail\"\n          name=\"submitter_email\"\n          class=\"form-control\"\n          placeholder=\"Enter your email address\"\n          required\n        \/>\n      <\/div>\n\n      <!-- INTENT TO RETURN RADIO BUTTONS -->\n      <div class=\"form-group\">\n        <label>\n          Do you plan for the student listed above to return next school year?\n          <span style=\"color:red\">*<\/span>\n        <\/label>\n        <div class=\"radio-group\">\n          <label>\n            <input type=\"radio\" name=\"intent_to_return\" value=\"Yes\" required \/>\n            Yes\n          <\/label>\n          <label>\n            <input type=\"radio\" name=\"intent_to_return\" value=\"No\" required \/>\n            No\n          <\/label>\n          <label>\n            <input type=\"radio\" name=\"intent_to_return\" value=\"Unsure\" required \/>\n            Unsure\n          <\/label>\n        <\/div>\n      <\/div>\n\n      <!-- SUBMIT BUTTON -->\n      <button type=\"submit\" class=\"submit-btn\" id=\"submitBtn\">Submit<\/button>\n\n      <!-- SUCCESS \/ ERROR MESSAGE -->\n      <div id=\"formMessage\" class=\"form-message\"><\/div>\n    <\/form>\n  <\/div>\n\n  <script>\n    const SCRIPT_URL = \"https:\/\/script.google.com\/macros\/s\/AKfycbzbfCmOZYMG_Pr_Fyc7xMRvls6JCcO-Hpxo5JD24YiabR4wEO5vSTw1OvATOCHOKsEB\/exec\"; \/\/ Replace with your deployed Apps Script URL\n\n    \/\/ Intercept form submission, post to Apps Script\n    (function() {\n      const formEl = document.getElementById('intentReturnForm');\n      const submitBtn = document.getElementById('submitBtn');\n      const msgEl = document.getElementById('formMessage');\n\n      formEl.addEventListener('submit', function(e) {\n        e.preventDefault(); \/\/ prevent normal form submission\n\n        submitBtn.disabled = true;\n        submitBtn.textContent = \"Submitting...\";\n\n        \/\/ Collect form data\n        const formData = new FormData(formEl);\n\n        fetch(SCRIPT_URL, {\n          method: \"POST\",\n          body: formData\n        })\n        .then(response => response.text())\n        .then(text => {\n          if (text.trim() === \"SUCCESS\") {\n            msgEl.className = \"form-message success\";\n            msgEl.innerHTML = \"Thank you! Your response has been recorded.\";\n            formEl.reset();\n          } else {\n            msgEl.className = \"form-message error\";\n            msgEl.innerHTML = \"Oops! There was a problem: \" + text;\n          }\n          msgEl.style.display = \"block\";\n\n          \/\/ Re-enable the button\n          submitBtn.disabled = false;\n          submitBtn.textContent = \"Submit\";\n        })\n        .catch(err => {\n          msgEl.className = \"form-message error\";\n          msgEl.innerHTML = \"Network error. Please try again.<br>\" + err;\n          msgEl.style.display = \"block\";\n          submitBtn.disabled = false;\n          submitBtn.textContent = \"Submit\";\n        });\n      });\n    })();\n  <\/script>\n<\/body>\n<\/html>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Intent to Return Form Intent to Return PTAA Mesquite Oates Dear PTAA Family, Plans for the upcoming school year are currently underway. In order to plan for a successful school year, we need your assistance. Please complete the following Intent to Return form (one per each current 5th\u201012th grade student). This will allow us to [&hellip;]<\/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,"episode_type":"","audio_file":"","podmotor_file_id":"","podmotor_episode_id":"","cover_image":"","cover_image_id":"","duration":"","filesize":"","filesize_raw":"","date_recorded":"","explicit":"","block":"","itunes_episode_number":"","itunes_title":"","itunes_season_number":"","itunes_episode_type":"","footnotes":""},"class_list":["post-691","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Intent of Return - Mesquite Oates Campus<\/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:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Intent of Return - Mesquite Oates Campus\" \/>\n<meta property=\"og:description\" content=\"Intent to Return Form Intent to Return PTAA Mesquite Oates Dear PTAA Family, Plans for the upcoming school year are currently underway. In order to plan for a successful school year, we need your assistance. Please complete the following Intent to Return form (one per each current 5th\u201012th grade student). This will allow us to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/\" \/>\n<meta property=\"og:site_name\" content=\"Mesquite Oates Campus\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-11T19:29:27+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:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/intent-of-return\\\/\",\"url\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/intent-of-return\\\/\",\"name\":\"Intent of Return - Mesquite Oates Campus\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/#website\"},\"datePublished\":\"2025-03-11T16:56:12+00:00\",\"dateModified\":\"2025-03-11T19:29:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/intent-of-return\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/intent-of-return\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/intent-of-return\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Intent of Return\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/#website\",\"url\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/\",\"name\":\"Mesquite Oates Campus\",\"description\":\"STEAM-Focused Charter School \",\"publisher\":{\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/#organization\",\"name\":\"Pioneer Technology and Arts Academy\",\"url\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/schools.ptaa.org\\\/ptaa-texas-district\\\/wp-content\\\/blogs.dir\\\/4\\\/files\\\/sites\\\/26\\\/2024\\\/03\\\/PTAA_LOGO-removebg.png\",\"contentUrl\":\"https:\\\/\\\/schools.ptaa.org\\\/ptaa-texas-district\\\/wp-content\\\/blogs.dir\\\/4\\\/files\\\/sites\\\/26\\\/2024\\\/03\\\/PTAA_LOGO-removebg.png\",\"width\":2711,\"height\":1051,\"caption\":\"Pioneer Technology and Arts Academy\"},\"image\":{\"@id\":\"https:\\\/\\\/texas.ptaa.org\\\/mesquite\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Intent of Return - Mesquite Oates Campus","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:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/","og_locale":"en_US","og_type":"article","og_title":"Intent of Return - Mesquite Oates Campus","og_description":"Intent to Return Form Intent to Return PTAA Mesquite Oates Dear PTAA Family, Plans for the upcoming school year are currently underway. In order to plan for a successful school year, we need your assistance. Please complete the following Intent to Return form (one per each current 5th\u201012th grade student). This will allow us to [&hellip;]","og_url":"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/","og_site_name":"Mesquite Oates Campus","article_modified_time":"2025-03-11T19:29:27+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/","url":"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/","name":"Intent of Return - Mesquite Oates Campus","isPartOf":{"@id":"https:\/\/texas.ptaa.org\/mesquite\/#website"},"datePublished":"2025-03-11T16:56:12+00:00","dateModified":"2025-03-11T19:29:27+00:00","breadcrumb":{"@id":"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/texas.ptaa.org\/mesquite\/intent-of-return\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/texas.ptaa.org\/mesquite\/"},{"@type":"ListItem","position":2,"name":"Intent of Return"}]},{"@type":"WebSite","@id":"https:\/\/texas.ptaa.org\/mesquite\/#website","url":"https:\/\/texas.ptaa.org\/mesquite\/","name":"Mesquite Oates Campus","description":"STEAM-Focused Charter School ","publisher":{"@id":"https:\/\/texas.ptaa.org\/mesquite\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/texas.ptaa.org\/mesquite\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/texas.ptaa.org\/mesquite\/#organization","name":"Pioneer Technology and Arts Academy","url":"https:\/\/texas.ptaa.org\/mesquite\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/texas.ptaa.org\/mesquite\/#\/schema\/logo\/image\/","url":"https:\/\/schools.ptaa.org\/ptaa-texas-district\/wp-content\/blogs.dir\/4\/files\/sites\/26\/2024\/03\/PTAA_LOGO-removebg.png","contentUrl":"https:\/\/schools.ptaa.org\/ptaa-texas-district\/wp-content\/blogs.dir\/4\/files\/sites\/26\/2024\/03\/PTAA_LOGO-removebg.png","width":2711,"height":1051,"caption":"Pioneer Technology and Arts Academy"},"image":{"@id":"https:\/\/texas.ptaa.org\/mesquite\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/pages\/691","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/comments?post=691"}],"version-history":[{"count":23,"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/pages\/691\/revisions"}],"predecessor-version":[{"id":717,"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/pages\/691\/revisions\/717"}],"wp:attachment":[{"href":"https:\/\/texas.ptaa.org\/mesquite\/wp-json\/wp\/v2\/media?parent=691"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}