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