CreateSchema
Creates the schema file for the specified SharePoint list. The schema file may be customized manually to exclude unwanted columns or include additional information about columns.
Input
Name | Type | Accepts Output Streams | Description |
Table | String | False | The name of the table for which to create a schema. |
TableDescription | String | False | An optional description of the table. |
FileStream | String | True | OutputStream to write the created schema |
WriteToFile | String | False | Whether to write to an output file or not. Defaults to true, must be set to false to write to FileStream or FileData. |
Result Set Columns
Name | Type | Description |
Result | String | Returns Success or Failure. |
SchemaFile | String | The generated schema file. |
Columns | String | The number of columns found. |
FileData | String | The generated schema encoded in base64. Only returned if WriteToFile set to false and FileStream is not set. |