เพิ่มข้อมูลข้อเสนอที่มีโครงสร้าง

รายการราคาช่วยให้ธุรกิจแชร์ทุกอย่างที่ธุรกิจนำเสนอได้อย่างง่ายดาย ใน Google Search และ Maps โดยตรง คุณสามารถสร้างรายการราคาโดยใช้ ข้อมูลข้อเสนอที่มีโครงสร้าง ซึ่งให้คุณเพิ่มข้อมูลธุรกิจลงในรายชื่อได้ ให้ลูกค้าได้เห็นสิ่งที่คุณต้องทำ ไม่ว่าจะเป็นเมนูอาหารหรือบริการต่างๆ ก่อนจะเดินเข้าประตูมา

ต่อไปนี้คือตัวอย่างข้อมูลเมนูที่มีโครงสร้างใน Google Search

เมนูแมคโดนัลด์

คุณสามารถเพิ่มข้อมูลเมนูที่มีโครงสร้าง เช่น เมนูอาหาร ไปยังตำแหน่งที่มีการใช้งานได้ ของ PriceList ออบเจ็กต์

คำขอ JSON ต่อไปนี้แสดงวิธีเผยแพร่เมนูอาหารเช้าไปยัง ตำแหน่งนั้น การตอบกลับมีอินสแตนซ์ของ ออบเจ็กต์ Location รายการ

HTTP
PATCH
https://mybusiness.googleapis.com/v4/accounts/{accountId}/locations/{locationId}?updateMask=priceLists
 {
  "priceLists": [
    {
      "priceListId": "Breakfast",
      "labels": [
        {
          "displayName": "Breakfast",
          "description": "Tasty Google Breakfast",
          "languageCode": "en"
        }
      ],
      "sourceUrl": "http://www.google.com/todays_menu",
      "sections": [
        {
          "sectionId": "entree_menu",
          "sectionType":"FOOD",
          "labels": [
            {
              "displayName": "Entrées",
              "description": "Breakfast Entrées",
              "languageCode": "en"
            }
          ],
          "items": [
            {
              "itemId": "scramble",
              "labels": [
                {
                  "displayName": "Big Scramble",
                  "description": "A delicious scramble filled with Potatoes, Eggs, 
                  Bell Peppers, and Sausage",
                  "languageCode": "en"
                }
              ],
              "price": {
                "currencyCode": "USD",
                "units": "12",
                "nanos": "200000000"
              }
            },
            {
              "itemId": "steak_omelette",
              "labels": [
                {
                  "displayName": "Steak Omelette",
                  "description": "Three egg omelette with grilled prime rib, 
                   fire-roasted bell peppers and onions, saut\u00e9ed mushrooms
                   and melted Swiss cheese",
                  "languageCode": "en"
                }
              ],
              "price": {
                "currencyCode": "USD",
                "units": "15",
                "nanos": "750000000"
              }
            }
          ]
        }
      ]
    }
  ]
}

ข้อมูลบริการ

หากธุรกิจมีตัวเลือกบริการที่แตกต่างกัน คุณสามารถเพิ่มแบบที่มีโครงสร้าง ข้อมูลบริการไปยังตำแหน่งที่มีการใช้ PriceList

คำขอ JSON ต่อไปนี้แสดงวิธีเผยแพร่ข้อเสนอบริการไปยัง ตำแหน่งนั้น การตอบกลับมีอินสแตนซ์ของ ออบเจ็กต์ Location รายการ

HTTP
PATCH
https://mybusiness.googleapis.com/v4/accounts/{accountId}/locations/{locationId}?updateMask=priceLists
 {
  "priceLists": [
    {
      "priceListId": "Oil Change",
      "labels": [
        {
          "displayName": "Oil Change",
          "description": "Caseys Qwik Oil Change",
          "languageCode": "en"
        }
      ],
      "sourceUrl": "http://www.google.com/todays_services",
      "sections": [
        {
          "sectionId": "oil_services",
          "sectionType":”SERVICES”,
          "labels": [
            {
              "displayName": "Services",
              "description": "Oil Changes",
              "languageCode": "en"
            }
          ],
          "items": [
            {
              "itemId": "20-minute-oil-change",
              "labels": [
                {
                  "displayName": "20 Minute Oil Change",
                  "description": "Quick oil change and filter service.",
                  "languageCode": "en"
                }
              ],
              "price": {
                "currencyCode": "USD",
                "units": "30",
                "nanos": "200000000"
              }
            },
            {
              "itemId": "full_service_oil_change",
              "labels": [
                {
                  "displayName": "Full Service Oil Change",
                  "description": "Quick oil change, filter service, and brake inspection.",
                  "languageCode": "en"
                }
              ],
              "price": {
                "currencyCode": "USD",
                "units": "45",
                "nanos": "750000000"
              }
            }
          ]
        }
      ]
    }
  ]
}