video.cerulea.blue/lexicon/fetchVideo.json

39 lines
832 B
JSON

{
"lexicon": 1,
"id": "blue.cerulea.video.fetchVideo",
"defs": {
"main": {
"type": "procedure",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["repo", "blob"],
"properties": {
"repo": {
"type": "string",
"format": "did"
},
"blob": {
"type": "string",
"format": "cid"
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["filename"],
"properties": {
"filename": {
"type": "string"
}
}
}
},
"errors": [{ "name": "Denied" }]
}
}
}