Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>First part of your question:</strong></p> <blockquote> <p><em>For schedule I decided to go for <a href="http://Schema.org/Event" rel="nofollow noreferrer">http://Schema.org/Event</a> type, however I need to add contact person name and phone but which property of Event can I use for that?</em></p> </blockquote> <p>You're spot on using an <code>Event</code> for your schedules. You could of course be a bit more precise and and use an extension of <code>Event</code> to be more precise as itemtype.</p> <p>When you wish to specify a contact person as a performer I'm a bit unsure. I would rather flip your thinking around and not specify a contact person but instead specify the events as upcoming or past events associated with the organization. The organization then has a contact point that will go for all the events.</p> <pre><code>&lt;div itemscope="" itemtype="http://schema.org/Organization/ReligiousGroup"&gt; &lt;div itemprop="location" itemscope="" itemtype="http://schema.org/Church"&gt; ... &lt;/div&gt; &lt;div itemprop="contactPoint" itemscope="" itemtype="http://schema.org/Person"&gt; ... &lt;/div&gt; &lt;div itemprop="events" itemscope="" itemtype="http://schema.org/Event"&gt; ... &lt;/div&gt; &lt;div itemprop="events" itemscope="" itemtype="http://schema.org/Event"&gt; ... &lt;/div&gt; &lt;div itemprop="events" itemscope="" itemtype="http://schema.org/Event"&gt; ... &lt;/div&gt; &lt;/div&gt; </code></pre> <p>Or more simple described with YAML:</p> <pre><code>--- Organization/ReligiousGroup: location : Church contactPoint : Person events : - Event - Event - Event </code></pre> <p>You can extend <code>Organization</code> to <code>ReligiousGroup</code> to be more precise of the item.</p> <p>Read more about extending here: <a href="http://www.schema.org/docs/extension.html" rel="nofollow noreferrer">http://www.schema.org/docs/extension.html</a></p> <hr> <p><strong>Now the final part of your question:</strong></p> <blockquote> <p><em>As for a house church - it's something between an Organization and Event - it's a group of believers getting together at a place at a certain time.</em></p> </blockquote> <p>A group of people getting together at a place at a certain time is an <code>Event</code>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload