1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

formatting

This commit is contained in:
alexcos20 2021-12-03 00:41:06 -08:00
parent 0bfb12c403
commit 93abc7db1a

View File

@ -214,15 +214,15 @@ Type of objects supported :
```json
[
{
"url":{
"url":"https://url.com/file1.csv",
"method":"GET"
"url": {
"url": "https://url.com/file1.csv",
"method": "GET"
}
},
{
"url":{
"url":"https://url.com/file2.csv",
"method":"POST"
"url": {
"url": "https://url.com/file2.csv",
"method": "POST"
}
}
]
@ -245,7 +245,7 @@ First class integrations supported in the future :
```json
[
{ "ipfs": { "hash":"XXX"}}
{ "ipfs": { "hash": "XXX"}}
]
```
@ -266,13 +266,13 @@ Example:
[
{
"url":{
"url":"https://url.com/file1.csv",
"method":"GET"
"url": "https://url.com/file1.csv",
"method": "GET"
}
},
{
"ipfs":{
"hash":"XXXX"
"ipfs": {
"hash": "XXXX"
}
}
]
@ -283,12 +283,12 @@ To get information about the files after encryption, the `/fileinfo` endpoint of
```json
[
{
"type":"url",
"type": "url",
"contentLength": 100,
"contentType": "application/json"
},
{
"type":"url",
"type": "url",
"contentLength": 130,
"contentType": "application/text"
}