Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions schemas/deployedInterface.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"_type": "computation:DeployedInterface",
"required": [
"accessibility",
"interface",
"location"
],
"properties": {
"accessibility": {
"_instruction": "Add the accessibility of this deployed interface.",
"_linkedTypes": [
"core:Accessibility"
]
},
"interface": {
"_instruction": "Enter the interface version that is deployed.",
"_linkedTypes": [
"core:InterfaceVersion"
]
},
"location": {
"_instruction": "Add the location (for physical services) or URL (for digital services) where this deployed interface may be accessed.",
"_linkedTypes": [
"core:Location",
"core:WebResource"
]
}
}
}
80 changes: 80 additions & 0 deletions schemas/serviceDeployment.schema.tpl.json
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we don't want to call this service deployment but rather deployment only? and also making the service optional? or did we say now everything with an interface is a service?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hasPart for implemented configurations need to be covered in here: CommonCoordinateFrameworkVersion, AnatomicalAtlasVersion, ModelVersion (maybe include also LaunchConfiguration?)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now solved through dependsOn and uses

Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"_type": "computation:ServiceDeployment",
"required": [
"name",
"provides",
"service",
"startTime"
],
"properties": {
"dependsOn": {
"_instruction": "Add the software version and any other relevant research product version that was deployed.",
"type": "array",
"minItems": 1,
"uniqueItems": true,
"_linkedTypes": [
Comment thread
lzehl marked this conversation as resolved.
"computation:WorkflowRecipeVersion",
"core:DatasetVersion",
"core:MetaDataModelVersion",
"core:ModelVersion",
"core:SoftwareVersion",
"sands:AnatomicalAtlasVersion",
"sands:CommonCoordinateFrameworkVersion"
]
},
"deploymentType": {
"_instruction": "Enter the type of deployment environment, for example, 'production' or 'integration'.",
"_linkedTypes": [
"controlledTerms:DeploymentEnvironmentType"
]
},
"endTime": {
"type": "string",
"_formats": [
"datetime"
],
"_instruction": "Enter the date and time at which this deployment ended, formatted acoording to ISO-8601."
},
"name": {
"type": "string",
"_instruction": "Enter a label for this service deployment."
},
"provides": {
"_instruction": "Add the interfaces that have been deployed.",
"type": "array",
"minItems": 1,
"uniqueItems": true,
"_embeddedTypes": [
"computation:DeployedInterface"
]
},
"service": {
"_instruction": "Add the service that has been deployed.",
"_linkedTypes": [
"core:Service"
]
},
"startTime": {
"type": "string",
"_formats": [
"datetime"
],
"_instruction": "Enter the date and time at which this deployment was started, formatted acoording to ISO-8601."
},
"uses": {
"_instruction": "Add the deployed interfaces and any other relevant research product versions that are used by this deployment.",
"type": "array",
"minItems": 1,
"uniqueItems": true,
"_linkedTypes": [
Comment thread
lzehl marked this conversation as resolved.
"computation:WorkflowRecipeVersion",
"computation:DeployedInterface",
"core:DatasetVersion",
"core:MetaDataModelVersion",
"core:ModelVersion",
"sands:AnatomicalAtlasVersion",
"sands:CommonCoordinateFrameworkVersion"
]
}
}
}
Loading