github.com/instill-ai/component@v0.16.0-beta/pkg/operator/base64/v0/config/tasks.json (about) 1 { 2 "TASK_DECODE": { 3 "instillShortDescription": "Decode the base64 string.", 4 "input": { 5 "description": "Input", 6 "instillEditOnNodeFields": [ 7 "data" 8 ], 9 "instillUIOrder": 0, 10 "properties": { 11 "data": { 12 "description": "Base64 string to be decoded", 13 "instillAcceptFormats": [ 14 "string" 15 ], 16 "instillUIMultiline": true, 17 "instillUIOrder": 0, 18 "instillUpstreamTypes": [ 19 "value", 20 "reference" 21 ], 22 "title": "Data", 23 "type": "string" 24 } 25 }, 26 "required": [ 27 "data" 28 ], 29 "title": "Input", 30 "type": "object" 31 }, 32 "output": { 33 "description": "Output", 34 "instillEditOnNodeFields": [ 35 "data" 36 ], 37 "instillUIOrder": 0, 38 "properties": { 39 "data": { 40 "description": "Data", 41 "instillFormat": "string", 42 "instillUIMultiline": true, 43 "instillUIOrder": 0, 44 "title": "Data", 45 "type": "string" 46 } 47 }, 48 "required": [ 49 "data" 50 ], 51 "title": "Output", 52 "type": "object" 53 } 54 }, 55 "TASK_ENCODE": { 56 "instillShortDescription": "Encode data into base64 string", 57 "input": { 58 "description": "Input", 59 "instillEditOnNodeFields": [ 60 "data" 61 ], 62 "instillUIOrder": 0, 63 "properties": { 64 "data": { 65 "description": "Data to be encoded", 66 "instillAcceptFormats": [ 67 "string" 68 ], 69 "instillUIMultiline": true, 70 "instillUIOrder": 0, 71 "instillUpstreamTypes": [ 72 "value", 73 "reference" 74 ], 75 "title": "Data", 76 "type": "string" 77 } 78 }, 79 "required": [ 80 "data" 81 ], 82 "title": "Input", 83 "type": "object" 84 }, 85 "output": { 86 "description": "Output", 87 "instillEditOnNodeFields": [ 88 "data" 89 ], 90 "instillUIOrder": 0, 91 "properties": { 92 "data": { 93 "description": "Data", 94 "instillFormat": "string", 95 "instillUIMultiline": true, 96 "instillUIOrder": 0, 97 "title": "Data", 98 "type": "string" 99 } 100 }, 101 "required": [ 102 "data" 103 ], 104 "title": "Output", 105 "type": "object" 106 } 107 } 108 }