hhappel / draft-happel-sml-structured-vacation-notices

0 stars 0 forks source link

JSON-LD format for structured vacation notices / out-of-office #1

Open hhappel opened 1 week ago

hhappel commented 1 week ago

Initial suggestion from https://datatracker.ietf.org/doc/draft-happel-sml-structured-vacation-notices/

  {
           "@context": "https://schema.org",
           "@type": "OutOfOffice",
           "start": "2023-08-15",
           "end": "2023-08-22",
           "isForwarded": false,
           "replacement": [
               {
                   "@type": "OutOfOfficeReplacement",
                   "name": "John Doe",
                   "topic": "Project A",
                   "email": "john@doe.com",
                   "phone": "+1234567890"
               },
               {
                   "@type": "OutOfOfficeReplacement",
                   "name": "Jane Doe",
                   "topic": "Project B",
                   "email": "jane@doe.com",
                   "phone": "+9876543210"
               }
           ],
           "note": "Some text"
   }

Note: This is a preliminary specification only. Do not use in practice.

Open issues:

hhappel commented 1 week ago

Further open issues (partially from discussion at IETF 119):