Skip to content

Commit

Permalink
Issue 46: Bugfix adding necessary JSON-LD context elements (#49)
Browse files Browse the repository at this point in the history
* Bugfix adding necessary JSON-LD context elements



Co-authored-by: Sebastian Steinbuss <[email protected]>
  • Loading branch information
sebbader-sap and ssteinbuss authored Sep 22, 2022
1 parent a5ae32a commit efaf241
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## 2022-09

### Changed
- fixed missing mandatory elements in mutlipart message



## [Q2/2022]

### Added
Expand Down
38 changes: 20 additions & 18 deletions Communication/protocols/multipart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ Content-Type: application/json
Content-Length: 409
{
"@context" : "https://w3id.org/idsa/contexts/context.jsonld",
"@type" : "ids:DescriptionResponseMessage",
"issued" : {
"@value" : "2019-12-21T13:11:14.596+02:00",
Expand Down Expand Up @@ -264,24 +265,25 @@ Content-Type: application/json; charset=utf-8
Content-Disposition: form-data; name="header"
{
"@type" : "ids:ConnectorUnavailableMessage",
"@id" : "http://industrialdataspace.org/connectorUnavailableMessage/1a421b8c-3407-44a8-aeb9-253f145c869a",
"issued" : {
"@value" : "2019-10-25T15:35:34.589+02:00",
"@type" : "http://www.w3.org/2001/XMLSchema#dateTimeStamp"
},
"modelVersion" : "4.1.0",
"ids:issuerConnector" : {
"@id" : "https://test.connector.de/"
},
"securityToken" : {
"@type" : "ids:DynamicAttributeToken",
"@id" : "http://industrialdataspace.org/token/e43c08e1-157b-4207-94a8-754e53f48839",
"ids:tokenFormat" : {
"@id" : "idsc:JWT"
},
"tokenValue" : "eyJhbGciOiJSUzI1NiIsInR5cCI..."
}
"@context" : "https://w3id.org/idsa/contexts/context.jsonld",
"@type" : "ids:ConnectorUnavailableMessage",
"@id" : "http://industrialdataspace.org/connectorUnavailableMessage/1a421b8c-3407-44a8-aeb9-253f145c869a",
"issued" : {
"@value" : "2019-10-25T15:35:34.589+02:00",
"@type" : "http://www.w3.org/2001/XMLSchema#dateTimeStamp"
},
"modelVersion" : "4.1.0",
"ids:issuerConnector" : {
"@id" : "https://test.connector.de/"
},
"securityToken" : {
"@type" : "ids:DynamicAttributeToken",
"@id" : "http://industrialdataspace.org/token/e43c08e1-157b-4207-94a8-754e53f48839",
"ids:tokenFormat" : {
"@id" : "idsc:JWT"
},
"tokenValue" : "eyJhbGciOiJSUzI1NiIsInR5cCI..."
}
}
--msgpart--
```
Expand Down

0 comments on commit efaf241

Please sign in to comment.