-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use common id generator when building multiple modules.
- Loading branch information
1 parent
ec47d61
commit f243bb7
Showing
5 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_:subject <https://schema.org/name> "John Smith" . | ||
_:subject <https://schema.org/email> "[email protected]" . | ||
_:subject <https://purl.imsglobal.org/spec/vc/ob/vocab.html#achievement> <http://example.com/#projectExecution> . | ||
<http://example.com/#projectExecution> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://purl.imsglobal.org/spec/vc/ob/vocab.html#Achievement> . | ||
<http://example.com/#projectExecution> <https://schema.org/name> "Project execution"@en . | ||
<http://example.com/#projectExecution> <https://purl.imsglobal.org/spec/vc/ob/vocab.html#Criteria> <http://example.com/#projectExecutionCriteria> . | ||
<http://example.com/#projectExecutionCriteria> <https://purl.imsglobal.org/spec/vc/ob/vocab.html#narrative> "Contribute to solution design and implementation."@en . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"type": "record", | ||
"fields": { | ||
"name": { "property": "https://schema.org/name", "value": { "type": "string" } }, | ||
"email": { "property": "https://schema.org/email", "value": { "type": "string" } }, | ||
"achievement": { | ||
"intro": [], | ||
"value": { | ||
"input": ["_:self"], | ||
"layout": { | ||
"type": "sum", | ||
"variants": { | ||
"projectExecution": { | ||
"intro": [], | ||
"value": { | ||
"input": ["_:self"], | ||
"layout": { | ||
"type": "unit", | ||
"const": "projectExecution", | ||
"dataset": [ | ||
["_:self", "https://purl.imsglobal.org/spec/vc/ob/vocab.html#achievement", "http://example.com/#projectExecution"], | ||
["http://example.com/#projectExecution", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "https://purl.imsglobal.org/spec/vc/ob/vocab.html#Achievement"], | ||
["http://example.com/#projectExecution", "https://schema.org/name", { "value": "Project execution", "language": "en" }], | ||
["http://example.com/#projectExecution", "https://purl.imsglobal.org/spec/vc/ob/vocab.html#Criteria", "http://example.com/#projectExecutionCriteria"], | ||
["http://example.com/#projectExecutionCriteria", "https://purl.imsglobal.org/spec/vc/ob/vocab.html#narrative", { "value": "Contribute to solution design and implementation.", "language": "en" }] | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "John Smith", | ||
"email": "[email protected]", | ||
"achievement": "projectExecution" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters