@@ -3314,14 +3314,21 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3314
3314
****"@version": 1.1****,
3315
3315
****"@sealed": true****,
3316
3316
"name": "http://schema.org/name",
3317
+ "employee": "http://schema.org/employee",
3317
3318
"Organization": "http://schema.org/Organization"
3318
3319
},
3319
3320
{
3320
3321
"member": "http://xmlns.com/foaf/0.1/member"
3321
3322
}
3322
3323
],
3323
3324
"@type": "Organization",
3324
- "name": "Digital Bazzar",
3325
+ "name": "Digital Bazaar",
3326
+ "employee" : {
3327
+ "@context": {
3328
+ "name": "this_attempt_to_override_name_will_fail"
3329
+ },
3330
+ "name" : "Dave Longley"
3331
+ },
3325
3332
"member": {
3326
3333
"@context": {
3327
3334
"name": "http://xmlns.com/foaf/0.1/name"
@@ -3338,11 +3345,16 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3338
3345
[{
3339
3346
"@type": ["http://schema.org/Organization"],
3340
3347
"http://schema.org/name": [{"@value": "Digital Bazaar"}],
3341
- "http://xmlns.com/foaf/0.1/member ": [
3348
+ "http://schema.org/employee ": [
3342
3349
{
3343
- "http://xmlns.com/foaf/0.1/ name": [{"@value": "Manu Sporny "}],
3350
+ "http://schema.org/ name": [{"@value": "Dave Longly "}]
3344
3351
}
3345
3352
],
3353
+ "http://xmlns.com/foaf/0.1/member": [
3354
+ {
3355
+ "http://xmlns.com/foaf/0.1/name": [{"@value": "Manu Sporny"}]
3356
+ }
3357
+ ]
3346
3358
}]
3347
3359
-->
3348
3360
</ pre >
@@ -3353,7 +3365,9 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3353
3365
< tbody >
3354
3366
< tr > < td > _:b0</ td > < td > rdf:type</ td > < td > schema:Organization</ td > </ tr >
3355
3367
< tr > < td > _:b0</ td > < td > schema:name</ td > < td > Digital Bazaar</ td > </ tr >
3356
- < tr > < td > _:b0</ td > < td > foaf:member</ td > < td > _:b1</ td > </ tr >
3368
+ < tr > < td > _:b0</ td > < td > schema:employee</ td > < td > _:b1</ td > </ tr >
3369
+ < tr > < td > _:b0</ td > < td > foaf:member</ td > < td > _:b2</ td > </ tr >
3370
+ < tr > < td > _:b1</ td > < td > schema:name</ td > < td > Dave Longley</ td > </ tr >
3357
3371
< tr > < td > _:b1</ td > < td > foaf:name</ td > < td > Manu Sporny</ td > </ tr >
3358
3372
</ tbody >
3359
3373
</ table >
@@ -3363,15 +3377,18 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
3363
3377
data-transform ="updateExample "
3364
3378
data-to-rdf >
3365
3379
<!--
3366
- @prefix schema: <http://schema.org/> .
3380
+ @prefix schema: <http://schema.org/>.
3367
3381
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
3368
3382
3369
3383
[
3370
3384
a schema:Organization;
3371
- schema:name "Digital Bazaar";
3385
+ shema:name "Digital Bazaar";
3386
+ schema:employee [
3387
+ schema:name "Dave Longley"
3388
+ ];
3372
3389
foaf:member [
3373
3390
foaf:name "Manu Sporny"
3374
- ]
3391
+ ];
3375
3392
] .
3376
3393
-->
3377
3394
</ pre >
0 commit comments