Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

need to make ScheduledActivity fields writable #501

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.sagebionetworks.bridge</groupId>
<artifactId>sdk-group</artifactId>
<!-- Please use the maven versions plugin to manage this, e.g.`mvn versions:set -DnewVersion=0.8.1`-->
<version>0.15.22</version>
<version>0.15.23</version>
<packaging>pom</packaging>
<url>https://api.sagebridge.org</url>

Expand Down
2 changes: 1 addition & 1 deletion rest-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>sdk-group</artifactId>
<groupId>org.sagebionetworks.bridge</groupId>
<version>0.15.22</version>
<version>0.15.23</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ properties:
type: string
schedulePlanGuid:
type: string
readOnly: true
startedOn:
type: string
format: date-time
Expand All @@ -20,23 +19,19 @@ properties:
scheduledOn:
type: string
format: date-time
readOnly: true
description: |
The time at which the activity should be made available to the participant. It's fine to show the activity before this, but the user should not be able to start it until this time has passed. Time will be expressed in the time zone sent to the server to request the scheduled activities.
expiresOn:
type: string
format: date-time
readOnly: true
description: |
The time after which this task should no longer be made available to the participant. It will also no longer be returned from the server API. Time will be expressed in the time zone sent to the server to request the scheduled activities.
activity:
$ref: ./activity.yml
readOnly: true
persistent:
type: boolean
description: |
Is this activity persistent? If so, it will never be removed from the list of activities; the client may wish to provide different UI for such a task.
readOnly: true
clientData:
type: object
description: |
Expand Down
2 changes: 1 addition & 1 deletion rest-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>sdk-group</artifactId>
<groupId>org.sagebionetworks.bridge</groupId>
<version>0.15.22</version>
<version>0.15.23</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down