Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcos20 committed Dec 7, 2021
1 parent 93abc7d commit 0160fdd
Showing 1 changed file with 16 additions and 21 deletions.
37 changes: 16 additions & 21 deletions content/concepts/did-ddo.md
Expand Up @@ -203,7 +203,7 @@ Type of objects supported :

<table>
<tr>
<th>Key</th>
<th>Type</th>
<th>Description</th>
<th>Example</th>
</tr>
Expand All @@ -214,16 +214,9 @@ Type of objects supported :
```json
[
{
"url": {
"url": "https://url.com/file1.csv",
"method": "GET"
}
},
{
"url": {
"url": "https://url.com/file2.csv",
"method": "POST"
}
"type": "url",
"url": "https://url.com/file1.csv",
"method": "GET"
}
]
```
Expand All @@ -235,7 +228,7 @@ First class integrations supported in the future :

<table>
<tr>
<th>Key</th>
<th>Type</th>
<th>Description</th>
<th>Example</th>
</tr>
Expand All @@ -245,7 +238,10 @@ First class integrations supported in the future :

```json
[
{ "ipfs": { "hash": "XXX"}}
{
"type":"ipfs",
"hash": "XXX"
}
]
```

Expand All @@ -265,15 +261,14 @@ Example:
```json
[
{
"url":{
"url": "https://url.com/file1.csv",
"method": "GET"
}
"type": "url",
"url": "https://url.com/file1.csv",
"method": "GET"

},
{
"ipfs": {
"hash": "XXXX"
}
"type": "ipfs",
"hash": "XXXX"
}
]
```
Expand All @@ -288,7 +283,7 @@ To get information about the files after encryption, the `/fileinfo` endpoint of
"contentType": "application/json"
},
{
"type": "url",
"type": "ipfs",
"contentLength": 130,
"contentType": "application/text"
}
Expand Down

0 comments on commit 0160fdd

Please sign in to comment.