File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/CloudNative.CloudEvents Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ for you.
30
30
| ** time** | ` CloudEvent.Time ` | ` System.DateTime ` |
31
31
| ** source** | ` CloudEvent.Source ` | ` System.Uri ` |
32
32
| ** subject** | ` CloudEvent.Subject ` | ` System.String ` |
33
- | ** schema ** | ` CloudEvent.SchemaUrl ` | ` System.Uri ` |
33
+ | ** dataschema ** | ` CloudEvent.DataSchema ` | ` System.Uri ` |
34
34
| ** datacontenttype** | ` CloudEvent.ContentType ` | ` System.Net.Mime.ContentType ` |
35
35
| ** data** | ` CloudEvent.Data ` | ` System.Object ` |
36
36
Original file line number Diff line number Diff line change @@ -124,11 +124,11 @@ public string Id
124
124
}
125
125
126
126
/// <summary>
127
- /// CloudEvents 'schemaurl ' attribute. A link to the schema that the data attribute
127
+ /// CloudEvents 'dataschema ' attribute. A link to the schema that the data attribute
128
128
/// adheres to. Incompatible changes to the schema SHOULD be reflected by a
129
- /// different URL .
129
+ /// different URI .
130
130
/// </summary>
131
- /// <see cref="https://github.com/cloudevents/spec/blob/master/spec.md#schemaurl "/>
131
+ /// <see cref="https://github.com/cloudevents/spec/blob/master/spec.md#dataschema "/>
132
132
public Uri DataSchema
133
133
{
134
134
get => attributes [ CloudEventAttributes . DataSchemaAttributeName ( attributes . SpecVersion ) ] as Uri ;
You can’t perform that action at this time.
0 commit comments