@@ -3160,21 +3160,19 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3160
3160
</ pre >
3161
3161
< pre class ="expanded nohighlight "
3162
3162
data-transform ="updateExample "
3163
- data-result-for ="A sealed @context prevents its term definitions to be overridden ">
3163
+ data-result-for ="A sealed @context prevents its term definitions to be overridden-original ">
3164
3164
<!--
3165
3165
[{
3166
3166
"@type": ["http://schema.org/Person"],
3167
- "http://schema.org/knows": [
3168
- {
3169
- "http://schema.org/name": [{"@value": "Gregg Kellogg"}],
3170
- }
3171
- ],
3172
- "http://schema.org/name": [{"@value": "Manu Sporny"}]
3167
+ "http://schema.org/name": [{"@value": "Manu Sporny"}],
3168
+ "http://schema.org/knows": [{
3169
+ "http://schema.org/name": [{"@value": "Gregg Kellogg"}]
3170
+ }]
3173
3171
}]
3174
3172
-->
3175
3173
</ pre >
3176
3174
< table class ="statements "
3177
- data-result-for ="A sealed @context prevents its term definitions to be overridden "
3175
+ data-result-for ="A sealed @context prevents its term definitions to be overridden-expanded "
3178
3176
data-to-rdf >
3179
3177
< thead > < tr > < th > Subject</ th > < th > Property</ th > < th > Value</ th > </ tr > </ thead >
3180
3178
< tbody >
@@ -3186,7 +3184,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3186
3184
</ table >
3187
3185
< pre class ="turtle "
3188
3186
data-content-type ="text/turtle "
3189
- data-result-for ="A sealed @context prevents its term definitions to be overridden "
3187
+ data-result-for ="A sealed @context prevents its term definitions to be overridden-expanded "
3190
3188
data-transform ="updateExample "
3191
3189
data-to-rdf >
3192
3190
<!--
@@ -3196,7 +3194,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3196
3194
a schema:Person;
3197
3195
schema:name "Manu Sporny";
3198
3196
schema:knows [
3199
- shema :name "Gregg Kellogg"
3197
+ schema :name "Gregg Kellogg"
3200
3198
]
3201
3199
] .
3202
3200
-->
@@ -3227,9 +3225,10 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3227
3225
"member": "http://schema.org/member",
3228
3226
"Person": {
3229
3227
"@id": "http://schema.org/Person",
3230
- "@context": {
3228
+ "@context": [null, {
3229
+ "Person": "http://schema.org/Person",
3231
3230
"name": "http://schema.org/familyName"
3232
- }
3231
+ }]
3233
3232
}
3234
3233
}
3235
3234
],
@@ -3243,21 +3242,21 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3243
3242
</ pre >
3244
3243
< pre class ="expanded nohighlight "
3245
3244
data-transform ="updateExample "
3246
- data-result-for ="A sealed @context can override its own terms ">
3245
+ data-result-for ="A sealed @context can override its own terms-original ">
3247
3246
<!--
3248
3247
[{
3249
- "@type": ["http://schema.org/Person"],
3250
3248
"http://schema.org/name": [{"@value": "Digital Bazaar"}],
3251
3249
"http://schema.org/member": [
3252
3250
{
3253
- "http://schema.org/familyame": [{"@value": "Sporny"}],
3251
+ "@type": ["http://schema.org/Person"],
3252
+ "http://schema.org/familyName": [{"@value": "Sporny"}]
3254
3253
}
3255
- ],
3254
+ ]
3256
3255
}]
3257
3256
-->
3258
3257
</ pre >
3259
3258
< table class ="statements "
3260
- data-result-for ="A sealed @context can override its own terms "
3259
+ data-result-for ="A sealed @context can override its own terms-expanded "
3261
3260
data-to-rdf >
3262
3261
< thead > < tr > < th > Subject</ th > < th > Property</ th > < th > Value</ th > </ tr > </ thead >
3263
3262
< tbody >
@@ -3269,14 +3268,14 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3269
3268
</ table >
3270
3269
< pre class ="turtle "
3271
3270
data-content-type ="text/turtle "
3272
- data-result-for ="A sealed @context can override its own terms "
3271
+ data-result-for ="A sealed @context can override its own terms-expanded "
3273
3272
data-transform ="updateExample "
3274
3273
data-to-rdf >
3275
3274
<!--
3276
3275
@prefix schema: <http://schema.org/> .
3277
3276
3278
3277
[
3279
- shema :name "Digital Bazaar";
3278
+ schema :name "Digital Bazaar";
3280
3279
schema:member [
3281
3280
a schema:Person;
3282
3281
schema:familyName "Sporny"
@@ -3325,29 +3324,29 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3325
3324
"name": "Digital Bazaar",
3326
3325
"employee" : {
3327
3326
"@context": {
3328
- "name": "this_attempt_to_override_name_will_fail"
3327
+ "name": "http://example.org/ this_attempt_to_override_name_will_fail"
3329
3328
},
3330
3329
"name" : "Dave Longley"
3331
3330
},
3332
3331
"member": {
3333
- "@context": {
3332
+ "@context": [null, {
3334
3333
"name": "http://xmlns.com/foaf/0.1/name"
3335
- },
3334
+ }] ,
3336
3335
"name": "Manu Sporny"
3337
3336
}
3338
3337
}
3339
3338
-->
3340
3339
</ pre >
3341
3340
< pre class ="expanded nohighlight "
3342
3341
data-transform ="updateExample "
3343
- data-result-for ="Sealing does not extend beyond other terms ">
3342
+ data-result-for ="Sealing does not extend beyond other terms-original ">
3344
3343
<!--
3345
3344
[{
3346
3345
"@type": ["http://schema.org/Organization"],
3347
3346
"http://schema.org/name": [{"@value": "Digital Bazaar"}],
3348
3347
"http://schema.org/employee": [
3349
3348
{
3350
- "http://schema.org/name": [{"@value": "Dave Longly "}]
3349
+ "http://schema.org/name": [{"@value": "Dave Longley "}]
3351
3350
}
3352
3351
],
3353
3352
"http://xmlns.com/foaf/0.1/member": [
@@ -3359,7 +3358,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3359
3358
-->
3360
3359
</ pre >
3361
3360
< table class ="statements "
3362
- data-result-for ="Sealing does not extend beyond other terms "
3361
+ data-result-for ="Sealing does not extend beyond other terms-expanded "
3363
3362
data-to-rdf >
3364
3363
< thead > < tr > < th > Subject</ th > < th > Property</ th > < th > Value</ th > </ tr > </ thead >
3365
3364
< tbody >
@@ -3368,12 +3367,12 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3368
3367
< tr > < td > _:b0</ td > < td > schema:employee</ td > < td > _:b1</ td > </ tr >
3369
3368
< tr > < td > _:b0</ td > < td > foaf:member</ td > < td > _:b2</ td > </ tr >
3370
3369
< tr > < td > _:b1</ td > < td > schema:name</ td > < td > Dave Longley</ td > </ tr >
3371
- < tr > < td > _:b1 </ td > < td > foaf:name</ td > < td > Manu Sporny</ td > </ tr >
3370
+ < tr > < td > _:b2 </ td > < td > foaf:name</ td > < td > Manu Sporny</ td > </ tr >
3372
3371
</ tbody >
3373
3372
</ table >
3374
3373
< pre class ="turtle "
3375
3374
data-content-type ="text/turtle "
3376
- data-result-for ="Sealing does not extend beyond other terms "
3375
+ data-result-for ="Sealing does not extend beyond other terms-expanded "
3377
3376
data-transform ="updateExample "
3378
3377
data-to-rdf >
3379
3378
<!--
@@ -3382,7 +3381,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3382
3381
3383
3382
[
3384
3383
a schema:Organization;
3385
- shema :name "Digital Bazaar";
3384
+ schema :name "Digital Bazaar";
3386
3385
schema:employee [
3387
3386
schema:name "Dave Longley"
3388
3387
];
0 commit comments