View in English

  • Apple Developer
    • Get Started

    Explore Get Started

    • Overview
    • Learn
    • Apple Developer Program

    Stay Updated

    • Latest News
    • Hello Developer
    • Platforms

    Explore Platforms

    • Apple Platforms
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    Featured

    • Design
    • Distribution
    • Games
    • Accessories
    • Web
    • Home
    • CarPlay
    • Technologies

    Explore Technologies

    • Overview
    • Xcode
    • Swift
    • SwiftUI

    Featured

    • Accessibility
    • App Intents
    • Apple Intelligence
    • Games
    • Machine Learning & AI
    • Security
    • Xcode Cloud
    • Community

    Explore Community

    • Overview
    • Meet with Apple events
    • Community-driven events
    • Developer Forums
    • Open Source

    Featured

    • WWDC
    • Swift Student Challenge
    • Developer Stories
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Centers
    • Documentation

    Explore Documentation

    • Documentation Library
    • Technology Overviews
    • Sample Code
    • Human Interface Guidelines
    • Videos

    Release Notes

    • Featured Updates
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • Downloads

    Explore Downloads

    • All Downloads
    • Operating Systems
    • Applications
    • Design Resources

    Featured

    • Xcode
    • TestFlight
    • Fonts
    • SF Symbols
    • Icon Composer
    • Support

    Explore Support

    • Overview
    • Help Guides
    • Developer Forums
    • Feedback Assistant
    • Contact Us

    Featured

    • Account Help
    • App Review Guidelines
    • App Store Connect Help
    • Upcoming Requirements
    • Agreements and Guidelines
    • System Status
  • Quick Links

    • Events
    • News
    • Forums
    • Sample Code
    • Videos
 

Vidéos

Ouvrir le menu Fermer le menu
  • Collections
  • Toutes les vidéos
  • À propos

Plus de vidéos

  • À propos
  • Code
  • Broaden your reach with Siri Event Suggestions

    Whether you're hosting event information in your app, on the web, or in an email, Siri Event Suggestions can help people keep track of their commitments — without compromising their privacy. We'll show you how to set up your reservations so that they automatically show up in the Calendar app and how to work with the Siri Event Suggestions APIs for iOS and Markup for web and email.

    Ressources

    • Register with Apple for Siri Event Suggestions Markup
    • Integrating Your App with Siri Event Suggestions
      • Vidéo HD
      • Vidéo SD

    Vidéos connexes

    WWDC23

    • Discover Calendar and EventKit

    WWDC20

    • Design for intelligence: Apps, evolved
    • Design for intelligence: Discover new opportunities
    • Design for intelligence: Make friends with "The System"
    • Design for intelligence: Meet people where they are
    • What's new in SiriKit and Shortcuts

    WWDC19

    • Integrating with Siri Event Suggestions
  • Rechercher dans cette vidéo…
    • 6:31 - JSON-LD

      <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "FoodEstablishmentReservation",
        "reservationStatus": "http://schema.org/ReservationConfirmed",
        "reservationId": "IWDSCA",
        "partySize": "2",
        "reservationFor": {
          "@type": "FoodEstablishment",
          "name": "EPIC Steak",
          "startDate": "2020-06-26T19:30:00-07:00",
          "telephone": "(415)369-9955"
          "address": {
            "@type": "http://schema.org/PostalAddress",
            "streetAddress": "369 The Embarcadero",
            "addressLocality": "San Francisco"
            "addressRegion": "CA",
            "postalCode": "95105",
            "addressCountry": "USA"
          }
        }
      }
      </script>
    • 6:45 - Microdata

      <div itemscope itemtype="FoodEstablishmentReservation"> 
        <link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
        <meta itemprop="reservationId" content="IWDSCA"/>
        <meta itemprop="partySize" content="2"/>
        <div itemprop="reservationFor" itemscope itemtype="FoodEstablishment">
          <meta itemprop="name" content="EPIC Steak"/>
          <meta itemprop="startDate" content="2020-06-26T19:30:00-07:00"/>
          <meta itemprop="telephone" content="(415)369-9955"/>
          <div itemprop="address" itemscope itemtype="PostalAddress">
            <meta itemprop="streetAddress" content="369 The Embarcadero"/>
            <meta itemprop="addressLocality" content="San Francisco"/>
            <meta itemprop="addressRegion" content="CA"/>
            <meta itemprop="postalCode" content="95105"/>
            <meta itemprop="addressCountry" content="USA"/>
          </div>
        </div>
      </div>
    • 6:58 - Modified Reservation JSON-LD

      <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "FoodEstablishmentReservation",
        "reservationStatus": "http://schema.org/ReservationConfirmed",
        "reservationId": "IWDSCA",
        "partySize": "2",
        "reservationFor": {
          "@type": "FoodEstablishment",
          "name": "EPIC Steak",
          "startDate": "2020-06-26T18:30:00-07:00",
          "telephone": "(415)369-9955"
          "address": {
            "@type": "http://schema.org/PostalAddress",
            "streetAddress": "369 The Embarcadero",
            "addressLocality": "San Francisco"
            "addressRegion": "CA",
            "postalCode": "95105",
            "addressCountry": "USA"
          }
        }
      }
      </script>
    • 7:21 - Cancelled Reservation JSON-LD

      <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "FoodEstablishmentReservation",
        "reservationStatus": "http://schema.org/ReservationCancelled",
        "reservationId": "IWDSCA",
        "partySize": "2",
        "reservationFor": {
          "@type": "FoodEstablishment",
          "name": "EPIC Steak",
          "startDate": "2020-06-26T19:30:00-07:00",
          "telephone": "(415)369-9955"
          "address": {
            "@type": "http://schema.org/PostalAddress",
            "streetAddress": "369 The Embarcadero",
            "addressLocality": "San Francisco"
            "addressRegion": "CA",
            "postalCode": "95105",
            "addressCountry": "USA"
          }
        }
      }
      </script>
    • 8:13 - SuggestionsAllowAnyDomainForMarkup default

      defaults write com.apple.suggestions SuggestionsAllowAnyDomainForMarkup -bool true
    • 8:25 - SuggestionsAllowUnverifiedSourceForMarkup default

      defaults write com.apple.suggestions SuggestionsAllowUnverifiedSourceForMarkup -bool true
    • 8:49 - SuggestionsAllowAnyDomainForMarkup default

      defaults write com.apple.suggestions SuggestionsAllowAnyDomainForMarkup -bool true
    • 9:03 - SuggestionsAllowUnverifiedSourceForMarkup default

      defaults write com.apple.suggestions SuggestionsAllowUnverifiedSourceForMarkup -bool true
    • 10:32 - Reservation Confirmation JSON-LD

      <script type='application/ld+json'>
      {
        "@context": "http://schema.org",
        "@type": "http://schema.org/FoodEstablishmentReservation",
        "reservationId": "IWDSCA",
        "reservationStatus": "http://schema.org/ReservationConfirmed",
        "url": "http://localhost:3000/reservations/6",
        "underName": {
          "@type": "http://schema.org/Person",
          "name": "John Appleseed"
        },
        "broker": {
          "@type": "http://schema.org/Organization",
          "name": "Apple Reservations"
        },
        "startTime": "2020-06-26T19:30:00-07:00",
        "partySize": "2",
        "reservationFor": {
          "@type": "http://schema.org/FoodEstablishment",
          "name": "EPIC Steak",
          "telephone": "(415)369-9955",
          "address": {
            "@type": "http://schema.org/PostalAddress",
            "streetAddress": "369 The Embarcadero",
            "addressLocality": "San Francisco"
            "addressRegion": "CA",
            "postalCode": "95105",
            "addressCountry": "USA"
          }
        }
      }
      </script>
    • 11:04 - Reservation Cancelled JSON-LD

      <script type='application/ld+json'>
      {
        "@context": "http://schema.org",
        "@type": "http://schema.org/FoodEstablishmentReservation",
        "reservationId": "IWDSCA",
        "reservationStatus": "http://schema.org/ReservationCancelled",
        "url": "http://localhost:3000/reservations/6",
        "underName": {
          "@type": "http://schema.org/Person",
          "name": "John Appleseed"
        },
        "broker": {
          "@type": "http://schema.org/Organization",
          "name": "Apple Reservations"
        },
        "startTime": "2020-06-26T19:30:00-07:00",
        "partySize": "2",
        "reservationFor": {
          "@type": "http://schema.org/FoodEstablishment",
          "name": "EPIC Steak",
          "telephone": "(415)369-9955",
          "address": {
            "@type": "http://schema.org/PostalAddress",
            "streetAddress": "369 The Embarcadero",
            "addressLocality": "San Francisco"
            "addressRegion": "CA",
            "postalCode": "95105",
            "addressCountry": "USA"
          }
        }
      }
      </script>
    • 13:10 - Registration URL

      developer.apple.com/contact/request/siri-events

Developer Footer

  • Vidéos
  • WWDC20
  • Broaden your reach with Siri Event Suggestions
  • Open Menu Close Menu
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • Icon Composer
    • SF Symbols
    Open Menu Close Menu
    • Accessibility
    • Accessories
    • Apple Intelligence
    • Audio & Video
    • Augmented Reality
    • Business
    • Design
    • Distribution
    • Education
    • Games
    • Health & Fitness
    • In-App Purchase
    • Localization
    • Maps & Location
    • Machine Learning & AI
    • Security
    • Safari & Web
    Open Menu Close Menu
    • Documentation
    • Downloads
    • Sample Code
    • Videos
    Open Menu Close Menu
    • Help Guides & Articles
    • Contact Us
    • Forums
    • Feedback & Bug Reporting
    • System Status
    Open Menu Close Menu
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles
    • Feedback Assistant
    Open Menu Close Menu
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program
    • Mini Apps Partner Program
    • News Partner Program
    • Video Partner Program
    • Security Bounty Program
    • Security Research Device Program
    Open Menu Close Menu
    • Meet with Apple
    • Apple Developer Centers
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Academies
    • WWDC
    Read the latest news.
    Get the Apple Developer app.
    Copyright © 2026 Apple Inc. All rights reserved.
    Terms of Use Privacy Policy Agreements and Guidelines