-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ServiceOwner class. Added service_owner property to ProductInstance. Moved "support" property from ProductInstance to ServiceOwner. Removed "guid" property from ServiceProvider. Changed status code for successful POST methods from 200 OK to 201 Created.
- Loading branch information
Greg McFall
committed
Sep 5, 2013
1 parent
f11eb49
commit fec119d
Showing
12 changed files
with
321 additions
and
276 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
22 changes: 0 additions & 22 deletions
22
examples/lti/src/main/resources/rdf/Membership/context.properties
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
examples/lti/src/main/resources/rdf/Membership/sample.json
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
examples/lti/src/main/resources/rdf/Membership/service.properties
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -45,8 +45,19 @@ | |
} | ||
} | ||
}, | ||
"support" : { | ||
"email" : "[email protected]" | ||
"service_owner" : { | ||
"@id" : "http://state.university.edu/", | ||
"timestamp" : "2012-03-28T09:08:16-04:00", | ||
"owner_name" : { | ||
"default_value" : "State University", | ||
"key" : "service_owner.name" | ||
}, | ||
"description" : { | ||
"default_value" : "A fictitious university." | ||
}, | ||
"support" : { | ||
"email" : "[email protected]" | ||
} | ||
}, | ||
"service_provider" : { | ||
"@id" : "http://yasp.example.com/ServiceProvider", | ||
|
@@ -68,13 +79,13 @@ | |
"capability_offered" : [ | ||
"basic-lti-launch-request", | ||
"Result.autocreate", | ||
"Result.sourcedGUID" | ||
"Result.sourcedId" | ||
], | ||
"service_offered" : [ | ||
{ | ||
"@type" : "RestService", | ||
"@id" : "tcp:ToolProxy.collection", | ||
"endpoint" : "http://lms.example.com/resources/ToolProxy", | ||
"endpoint" : "http://lms.example.com/resources/ToolProxy/", | ||
"format" : ["application/vnd.ims.lti.v2.ToolProxy+json"], | ||
"action" : ["POST"] | ||
}, | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix bind: <http://purl.org/semantictools/v1/vocab/bind#> . | ||
|
||
<http://purl.imsglobal.org/xsd/lti/v2/ltid#> a owl:Ontology ; | ||
bind:suggestedPrefix "lti-type" . | ||
|
Oops, something went wrong.