|
13 | 13 | "properties": {
|
14 | 14 | "host": {
|
15 | 15 | "title": "Host",
|
16 |
| - "description": "Hostname of the database.", |
| 16 | + "description": "The hostname of the database.", |
17 | 17 | "type": "string",
|
18 | 18 | "order": 0
|
19 | 19 | },
|
20 | 20 | "port": {
|
21 | 21 | "title": "Port",
|
22 |
| - "description": "Port of the database.", |
| 22 | + "description": "The port of the database.", |
23 | 23 | "type": "integer",
|
24 | 24 | "minimum": 0,
|
25 | 25 | "maximum": 65536,
|
|
29 | 29 | },
|
30 | 30 | "sid": {
|
31 | 31 | "title": "SID",
|
32 |
| - "description": "SID", |
| 32 | + "description": "The System Identifier uniquely distinguishes the instance from any other instance on the same computer.", |
33 | 33 | "type": "string",
|
34 | 34 | "order": 2
|
35 | 35 | },
|
36 | 36 | "username": {
|
37 | 37 | "title": "User",
|
38 |
| - "description": "Username to use to access the database. This user must have CREATE USER privileges in the database.", |
| 38 | + "description": "The username to access the database. This user must have CREATE USER privileges in the database.", |
39 | 39 | "type": "string",
|
40 | 40 | "order": 3
|
41 | 41 | },
|
42 | 42 | "password": {
|
43 | 43 | "title": "Password",
|
44 |
| - "description": "Password associated with the username.", |
| 44 | + "description": "The password associated with the username.", |
45 | 45 | "type": "string",
|
46 | 46 | "airbyte_secret": true,
|
47 | 47 | "order": 4
|
48 | 48 | },
|
49 | 49 | "schema": {
|
50 | 50 | "title": "Default Schema",
|
51 |
| - "description": "The default schema tables are written to if the source does not specify a namespace. The usual value for this field is \"airbyte\". In Oracle, schemas and users are the same thing, so the \"user\" parameter is used as the login credentials and this is used for the default Airbyte message schema.", |
| 51 | + "description": "The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is \"airbyte\". In Oracle, schemas and users are the same thing, so the \"user\" parameter is used as the login credentials and this is used for the default Airbyte message schema.", |
52 | 52 | "type": "string",
|
53 | 53 | "examples": ["airbyte"],
|
54 | 54 | "default": "airbyte",
|
|
57 | 57 | "encryption": {
|
58 | 58 | "title": "Encryption",
|
59 | 59 | "type": "object",
|
60 |
| - "description": "Encryption method to use when communicating with the database", |
| 60 | + "description": "The encryption method which is used when communicating with the database.", |
61 | 61 | "order": 6,
|
62 | 62 | "oneOf": [
|
63 | 63 | {
|
|
75 | 75 | }
|
76 | 76 | },
|
77 | 77 | {
|
78 |
| - "title": "Native Network Ecryption (NNE)", |
| 78 | + "title": "Native Network Encryption (NNE)", |
79 | 79 | "additionalProperties": false,
|
80 |
| - "description": "Native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.", |
| 80 | + "description": "The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.", |
81 | 81 | "required": ["encryption_method"],
|
82 | 82 | "properties": {
|
83 | 83 | "encryption_method": {
|
|
88 | 88 | },
|
89 | 89 | "encryption_algorithm": {
|
90 | 90 | "type": "string",
|
91 |
| - "description": "This parameter defines the encryption algorithm to be used", |
| 91 | + "description": "This parameter defines the database encryption algorithm.", |
92 | 92 | "title": "Encryption Algorithm",
|
93 | 93 | "default": "AES256",
|
94 | 94 | "enum": ["AES256", "RC4_56", "3DES168"]
|
|
98 | 98 | {
|
99 | 99 | "title": "TLS Encrypted (verify certificate)",
|
100 | 100 | "additionalProperties": false,
|
101 |
| - "description": "Verify and use the cert provided by the server.", |
| 101 | + "description": "Verify and use the certificate provided by the server.", |
102 | 102 | "required": ["encryption_method", "ssl_certificate"],
|
103 | 103 | "properties": {
|
104 | 104 | "encryption_method": {
|
|
109 | 109 | },
|
110 | 110 | "ssl_certificate": {
|
111 | 111 | "title": "SSL PEM file",
|
112 |
| - "description": "Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations", |
| 112 | + "description": "Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.", |
113 | 113 | "type": "string",
|
114 | 114 | "airbyte_secret": true,
|
115 | 115 | "multiline": true
|
|
0 commit comments