You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>Schema.org objects turned into strongly typed C# POCO classes for use in .NET. All classes can be serialized into JSON/JSON-LD and XML, typically used to represent structured data in the head section of html page.</Description>
Copy file name to clipboardExpand all lines: Source/Schema.NET/auto/BusOrCoach.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ public partial class BusOrCoach : Vehicle
24
24
publicOneOrMany<string>?AcrissCode{get;set;}
25
25
26
26
/// <summary>
27
-
/// <p>The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.</p>
28
-
/// <p>Typical unit code(s): KGM for kilogram, LBR for pound</p>
27
+
/// The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.<br/><br/>
28
+
/// Typical unit code(s): KGM for kilogram, LBR for pound<br/><br/>
29
29
/// <ul>
30
30
/// <li>Note 1: You can indicate additional information in the <a class="localLink" href="http://schema.org/name">name</a> of the <a class="localLink" href="http://schema.org/QuantitativeValue">QuantitativeValue</a> node.</li>
31
31
/// <li>Note 2: You may also link to a <a class="localLink" href="http://schema.org/QualitativeValue">QualitativeValue</a> node that provides additional information using <a class="localLink" href="http://schema.org/valueReference">valueReference</a></li>
Copy file name to clipboardExpand all lines: Source/Schema.NET/core/AccountingService.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@ namespace Schema.NET
5
5
usingNewtonsoft.Json;
6
6
7
7
/// <summary>
8
-
/// Accountancy business.</p>
9
-
/// <p>As a <a class="localLink" href="http://schema.org/LocalBusiness">LocalBusiness</a> it can be described as a <a class="localLink" href="http://schema.org/provider">provider</a> of one or more <a class="localLink" href="http://schema.org/Service">Service</a>(s).
8
+
/// Accountancy business.<br/><br/>
9
+
/// As a <a class="localLink" href="http://schema.org/LocalBusiness">LocalBusiness</a> it can be described as a <a class="localLink" href="http://schema.org/provider">provider</a> of one or more <a class="localLink" href="http://schema.org/Service">Service</a>(s).
Copy file name to clipboardExpand all lines: Source/Schema.NET/core/Action.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@ namespace Schema.NET
5
5
usingNewtonsoft.Json;
6
6
7
7
/// <summary>
8
-
/// An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.</p>
9
-
/// <p>See also <a href="http://blog.schema.org/2014/04/announcing-schemaorg-actions.html">blog post</a> and <a href="http://schema.org/docs/actions.html">Actions overview document</a>.
8
+
/// An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.<br/><br/>
9
+
/// See also <a href="http://blog.schema.org/2014/04/announcing-schemaorg-actions.html">blog post</a> and <a href="http://schema.org/docs/actions.html">Actions overview document</a>.
10
10
/// </summary>
11
11
[DataContract]
12
12
publicpartialclassAction:Thing
@@ -32,8 +32,8 @@ public partial class Action : Thing
32
32
publicValues<Organization,Person>?Agent{get;set;}
33
33
34
34
/// <summary>
35
-
/// The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to <em>December</em>.</p>
36
-
/// <p>Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
35
+
/// The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to <em>December</em>.<br/><br/>
36
+
/// Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
37
37
/// </summary>
38
38
[DataMember(Name="endTime",Order=108)]
39
39
[JsonConverter(typeof(ValuesConverter))]
@@ -82,8 +82,8 @@ public partial class Action : Thing
82
82
publicOneOrMany<Thing>?Result{get;set;}
83
83
84
84
/// <summary>
85
-
/// The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from <em>January</em> to December.</p>
86
-
/// <p>Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
85
+
/// The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from <em>January</em> to December.<br/><br/>
86
+
/// Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.
0 commit comments