schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
liquibase-3.2.json
columnName
The name of the column for which to add a default value.
{"type": "string", "default": ""}
liquibase-3.2.json
columnDataType
The current data type of the column for which to add a default value.
{"type": "string", "default": ""}
liquibase-3.2.json
defaultValue
The default value. Either this property or one of the other defaultValue* properties are required.
{"type": "string", "default": ""}
liquibase-3.2.json
defaultValueNumeric
The attribute that sets the default value for a column of a numeric type. For example: integer, bigint, bigdecimal, and others.
{"type": "number", "default": ""}
liquibase-3.2.json
defaultValueDate
The attribute that sets the default value for a column of a date type. For example: timestamp, datetime, date, and others.
{"type": "string", "default": ""}
liquibase-3.2.json
defaultValueBoolean
The attribute that sets the default value for a column of a boolean type.
{"type": "boolean", "default": ""}
liquibase-3.2.json
defaultValueComputed
The attribute that sets the default value for a column using a function which returns value of the same type as the column has.
{"type": "string", "default": ""}
liquibase-3.2.json
defaultValueSequenceNext
The attribute that sets value for a specified column by using the value of the existing sequence. With every new input, the next value of the sequence will be taken.
{"type": "string", "default": ""}
liquibase-3.2.json
defaultValueConstraintName
The attribute that sets a unique name for default constraint used for a specific column. It works only along with any of defaultValue* attributes listed.
{"type": "string", "default": ""}
liquibase-3.2.json
dropDefaultValue
Removes the database default value for a column.
{"type": "object", "default": {}, "required": ["columnName", "tableName"], "properties": {"catalogName": {}, "schemaName": {}, "tableName": {}, "columnName": {"type": "string", "default": ""}, "columnDataType": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
columnName
Name of column to drop the default value from
{"type": "string", "default": ""}
liquibase-3.2.json
addUniqueConstraint
Adds a unique constraint to an existing column or set of columns.
{"type": "object", "default": {}, "required": ["columnNames", "tableName"], "properties": {"catalogName": {}, "schemaName": {}, "tableName": {}, "columnNames": {"type": "string", "default": ""}, "constraintName": {"type": "string", "default": ""}, "tablespace": {"type": "string", "default": ""}, "disabled": {"type": "boolean", "default": false}, "deferrable": {"type": "boolean", "default": false}, "initiallyDeferred": {"type": "boolean", "default": false}, "forIndexCatalogName": {"type": "string", "default": ""}, "forIndexSchemaName": {"type": "string", "default": ""}, "forIndexName": {"type": "string", "default": ""}, "clustered": {"type": "boolean", "default": false}, "validate": {"type": "boolean", "default": false}}, "additionalProperties": true}
liquibase-3.2.json
columnNames
Name of the column(s) to create the unique constraint on. Comma separated if multiple
{"type": "string", "default": ""}
liquibase-3.2.json
constraintName
Name of the unique constraint
{"type": "string", "default": ""}
liquibase-3.2.json
tablespace
'Tablespace' to create the index in. Corresponds to file group in mssql
{"type": "string", "default": ""}
liquibase-3.2.json
disabled
True if this constraint is disabled, False otherwise
{"type": "boolean", "default": false}
liquibase-3.2.json
deferrable
True if this constraint is deferrable, False otherwise
{"type": "boolean", "default": false}
liquibase-3.2.json
initiallyDeferred
True if this constraint is initially deferred, False otherwise
{"type": "boolean", "default": false}
liquibase-3.2.json
clustered
Whether create a clustered index
{"type": "boolean", "default": false}
liquibase-3.2.json
validate
Should be true if the unique constraint shall 'ENABLE VALIDATE' set, or false if the 'ENABLE NOVALIDATE' shall.
{"type": "boolean", "default": false}
liquibase-3.2.json
dropUniqueConstraint
Drops an existing unique constraint.
{"type": "object", "default": {}, "required": ["constraintName", "tableName"], "properties": {"catalogName": {}, "schemaName": {}, "tableName": {}, "constraintName": {"type": "string", "default": ""}, "uniqueColumns": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
constraintName
Name of unique constraint to drop
{"type": "string", "default": ""}
liquibase-3.2.json
setTableRemarks
Sets remarks on a table.
{"type": "object", "default": {}, "required": ["remarks", "tableName"], "properties": {"catalogName": {}, "schemaName": {}, "tableName": {}, "remarks": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
remarks
Comment to set on the table
{"type": "string", "default": ""}
liquibase-3.2.json
setColumnRemarks
The setColumnRemarks Change Type sets remarks on a column.
{"type": "object", "default": {}, "required": ["columnName", "remarks", "tableName"], "properties": {"catalogName": {}, "schemaName": {}, "tableName": {}, "columnName": {"type": "string", "default": ""}, "remarks": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
columnName
The name of the column
{"type": "string", "default": ""}
liquibase-3.2.json
remarks
The comment to set on the column
{"type": "string", "default": ""}
liquibase-3.2.json
customChange
The customChange type creates a custom Change Type class.
{"type": "object", "default": {}, "required": ["class"], "properties": {"class": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
loadData
Loads data from a CSV file into an existing table when you add it to your changelog.
{"type": "object", "default": {}, "required": ["file", "tableName"], "properties": {"catalogName": {}, "schemaName": {}, "tableName": {}, "file": {"type": "string", "default": ""}, "relativeToChangelogFile": {"type": "boolean", "default": false}, "usePreparedStatements": {"type": "boolean", "default": false}, "encoding": {"type": "string", "default": ""}, "separator": {"type": "string", "default": ""}, "quotchar": {"type": "string", "default": ""}, "commentLineStartsWith": {"type": "string", "default": ""}, "column": {}, "columns": {}}, "additionalProperties": true}
liquibase-3.2.json
file
CSV file to load.
{"type": "string", "default": ""}
liquibase-3.2.json
relativeToChangelogFile
Whether the file path relative to the root changelog file rather than to the classpath.
{"type": "boolean", "default": false}
liquibase-3.2.json
usePreparedStatements
Use prepared statements instead of insert statement strings if the database supports it.
{"type": "boolean", "default": false}
liquibase-3.2.json
encoding
Encoding of the CSV file (defaults to UTF-8).
{"type": "string", "default": ""}
liquibase-3.2.json
separator
Character separating the fields.
{"type": "string", "default": ""}
liquibase-3.2.json
quotchar
The quote character for string fields containing the separator character.
{"type": "string", "default": ""}
liquibase-3.2.json
commentLineStartsWith
Lines starting with this are treated as comment and ignored.
{"type": "string", "default": ""}
liquibase-3.2.json
loadUpdateData
Loads or updates data from a CSV file into an existing table. Differs from loadData by issuing a SQL batch that checks for the existence of a record. If found, the record is UPDATEd, else the record is INSERTed. Also, generates DELETE statements for a rollback. A value of NULL in a cell will be converted to a database NULL rather than the string 'NULL'
{"type": "object", "default": {}, "required": ["file", "primaryKey", "tableName"], "properties": {"catalogName": {}, "commentLineStartsWith": {"type": "string", "default": ""}, "schemaName": {}, "tableName": {}, "file": {"type": "string", "default": ""}, "relativeToChangelogFile": {"type": "boolean", "default": false}, "encoding": {"type": "string", "default": ""}, "primaryKey": {"type": "string", "default": ""}, "onlyUpdate": {"type": "boolean", "default": ""}, "separator": {"type": "string", "default": ""}, "quotchar": {"type": "string", "default": ""}, "usePreparedStatements": {"type": "boolean", "default": ""}, "column": {}, "columns": {}}, "additionalProperties": true}
liquibase-3.2.json
commentLineStartsWith
Lines starting with this are treated as comment and ignored.
{"type": "string", "default": ""}
liquibase-3.2.json
file
CSV file to load
{"type": "string", "default": ""}
liquibase-3.2.json
relativeToChangelogFile
Whether the file path relative to the root changelog file rather than to the classpath.
{"type": "boolean", "default": false}
liquibase-3.2.json
encoding
Encoding of the CSV file (defaults to UTF-8)
{"type": "string", "default": ""}
liquibase-3.2.json
primaryKey
Comma delimited list of the columns for the primary key
{"type": "string", "default": ""}
liquibase-3.2.json
onlyUpdate
If true, records with no matching database record should be ignored
{"type": "boolean", "default": ""}
liquibase-3.2.json
separator
Character separating the fields.
{"type": "string", "default": ""}
liquibase-3.2.json
quotchar
The quote character for string fields containing the separator character.
{"type": "string", "default": ""}
liquibase-3.2.json
usePreparedStatements
Use prepared statements instead of insert statement strings if the DB supports it.
{"type": "boolean", "default": ""}
liquibase-3.2.json
executeCommand
The executeCommand Change Type executes a system command.
{"type": "object", "default": {}, "required": ["executable"], "properties": {"executable": {"type": "string", "default": ""}, "os": {"type": "string", "default": ""}, "timeout": {"type": "string", "default": ""}, "arg": {"type": "object", "default": {}, "properties": {"value": {"type": "string", "default": ""}}, "additionalProperties": true}, "args": {"type": "array", "items": {"anyOf": [{"type": "object", "properties": {"value": {"type": "string", "default": ""}}}]}}}, "additionalProperties": true}
liquibase-3.2.json
executable
The name of the executable to run
{"type": "string", "default": ""}
liquibase-3.2.json
os
The list of operating systems on which to execute the command (taken from the os.name Java system property)
{"type": "string", "default": ""}
liquibase-3.2.json
timeout
The timeout value for executable to run
{"type": "string", "default": ""}
liquibase-3.2.json
arg
Arguments for the executable
{"type": "object", "default": {}, "properties": {"value": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
value
The value of the attribute (for example: '-param')
{"type": "string", "default": ""}
liquibase-3.2.json
args
Arguments for the executable
{"type": "array", "items": {"anyOf": [{"type": "object", "properties": {"value": {"type": "string", "default": ""}}}]}}
liquibase-3.2.json
value
The value of the attribute (for example: '-param')
{"type": "string", "default": ""}
liquibase-3.2.json
output
Logs a message and continues execution.
{"type": "object", "default": {}, "properties": {"message": {"type": "string", "default": ""}, "target": {"enum": ["STDOUT", "STDERR", "FATAL", "WARN", "INFO", "DEBUG"], "default": "STDERR"}}, "additionalProperties": true}
liquibase-3.2.json
message
Message to output
{"type": "string", "default": ""}
liquibase-3.2.json
target
Target for message. Possible values: STDOUT, STDERR, FATAL, WARN, INFO, DEBUG. Default value: STDERR
{"enum": ["STDOUT", "STDERR", "FATAL", "WARN", "INFO", "DEBUG"], "default": "STDERR"}
liquibase-3.2.json
modifySql
Although Liquibase supports most standard SQL statements with its Change Types, there are times when you need the generated SQL to be different. The following examples show how to change data types or add additional vendor-specific clauses such as ENGINE INNODB to CREATE TABLE statements. Since 1.9
{"type": "object", "default": {}, "properties": {"dbms": {}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "applyToRollback": {"type": "boolean", "default": false}, "prepend": {"type": "object", "default": {}, "properties": {"value": {"type": "string"}}}, "append": {"type": "object", "default": {}, "properties": {"value": {"type": "string"}}}, "replace": {"type": "object", "default": {}, "properties": {"replace": {"type": "string"}, "with": {"type": "string"}}}, "regExpReplace": {"type": "object", "default": {}, "properties": {"replace": {"type": "string"}, "with": {"type": "string"}}}}, "additionalProperties": true}
liquibase-3.2.json
context
Specifies the list of Contexts in which to run the SQL modification. If you do not specify any context, every changeset will be applied. Since 2.0
{"type": "string", "default": ""}
liquibase-3.2.json
applyToRollback
Defines whether the SQL modification should be applied to rollback statements. The default value is false. Since 2.0
{"type": "boolean", "default": false}
liquibase-3.2.json
prepend
Adds SQL to the beginning of the statement.
{"type": "object", "default": {}, "properties": {"value": {"type": "string"}}}
liquibase-3.2.json
append
Adds SQL to the end of the statement.
{"type": "object", "default": {}, "properties": {"value": {"type": "string"}}}
liquibase-3.2.json
replace
Replaces all instances of the text specified.
{"type": "object", "default": {}, "properties": {"replace": {"type": "string"}, "with": {"type": "string"}}}
liquibase-3.2.json
regExpReplace
Replaces all instances of the regular expression specified.
{"type": "object", "default": {}, "properties": {"replace": {"type": "string"}, "with": {"type": "string"}}}
liquibase-3.2.json
databaseChangeLog
The root of all Liquibase changes is the changelog file. Liquibase uses a changelog to sequentially list all changes made to your database. Think of it as a ledger. It is a file that contains a record of all your database changes (changesets). Liquibase uses this changelog record to audit your database and execute any changes that are not yet applied to your database.
{"type": "array", "default": [], "items": {"anyOf": [{"type": "object", "default": {}, "properties": {"logicalFilePath": {"type": "string", "default": ""}, "context": {"type": "string", "default": ""}, "objectQuotingStrategy": {"type": "string", "default": ""}, "property": {"type": "object", "default": {}, "properties": {"file": {"type": "string", "default": ""}, "name": {"type": "string", "default": ""}, "value": {"type": "string", "default": ""}, "dbms": {}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "global": {"type": "boolean", "default": true}, "target": {"type": "string", "default": ""}}, "additionalProperties": true}, "preConditions": {}, "changeSet": {"type": "object", "default": {}, "required": ["id", "author"], "properties": {"id": {"type": "string", "default": ""}, "author": {"type": "string", "default": ""}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "dbms": {}, "runOnChange": {"type": "boolean", "default": false}, "runAlways": {"type": "boolean", "default": false}, "failOnError": {"type": "boolean", "default": true}, "onValidationFail": {"type": "string", "default": ""}, "runInTransaction": {"type": "boolean", "default": true}, "logicalFilePath": {"type": "string", "default": ""}, "objectQuotingStrategy": {"type": "string", "default": ""}, "created": {"type": "string", "default": ""}, "runOrder": {"type": "string", "default": ""}, "ignore": {"type": "boolean", "default": false}, "runWith": {"type": "string", "default": ""}, "validCheckSum": {"type": "array", "items": {"type": "string"}}, "preConditions": {}, "comment": {"type": "string", "default": ""}, "changes": {}, "rollback": {"anyOf": [{"type": "object", "additionalProperties": false, "properties": {}}, {}, {"type": "string"}, {"type": "object", "required": ["changeSetId", "changeSetAuthor"], "properties": {"changeSetId": {"type": "string"}, "changeSetAuthor": {"type": "string"}, "changeSetPath": {"type": "string"}}}]}, "modifySql": {"type": "array", "items": {}}}, "additionalProperties": true}, "include": {"type": "object", "default": {}, "properties": {"id": {"type": "string", "default": ""}, "author": {"type": "string", "default": ""}, "file": {"type": "string", "default": ""}, "relativeToChangelogFile": {"type": "boolean", "default": false}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "ignore": {"type": "string", "default": ""}, "created": {"type": "string", "default": ""}}, "additionalProperties": true}, "includeAll": {"type": "object", "default": {}, "properties": {"path": {"type": "string", "default": ""}, "errorIfMissingOrEmpty": {"type": "boolean", "default": false}, "relativeToChangelogFile": {"type": "boolean", "default": false}, "resourceComparator": {"type": "string", "default": ""}, "filter": {"type": "string", "default": ""}, "context": {"type": "string", "default": ""}}, "additionalProperties": true}}, "additionalProperties": true}]}}
liquibase-3.2.json
logicalFilePath
Overrides the file name and path when creating the unique identifier of changesets. It is required when you want to move or rename changelogs.
{"type": "string", "default": ""}
liquibase-3.2.json
objectQuotingStrategy
Controls how object names are quoted in the generated SQL or used in calls to the database. The names of objects are used differently in databases. For example, Oracle converts everything to uppercase (unless quoted). There are three possible values. The default value is LEGACY. LEGACY - the same behavior as in Liquibase 2.0 QUOTE_ALL_OBJECTS - every object gets quoted. For example: person becomes "person". QUOTE_ONLY_RESERVED_WORDS - reserved keywords and invalid column names are quoted.
{"type": "string", "default": ""}
liquibase-3.2.json
property
Liquibase allows a dynamic substitution of properties in your changelog. The tokens to replace in your changelog are described using the ${property-name} syntax.
{"type": "object", "default": {}, "properties": {"file": {"type": "string", "default": ""}, "name": {"type": "string", "default": ""}, "value": {"type": "string", "default": ""}, "dbms": {}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "global": {"type": "boolean", "default": true}, "target": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
file
The name of the file from which the properties should be loaded. It will create a property for all properties in the file. The content of the file must follow the java properties file format.
{"type": "string", "default": ""}
liquibase-3.2.json
name
The name of the parameter. Required if file is not set
{"type": "string", "default": ""}
liquibase-3.2.json
value
The value of the property. Required if file is not set
{"type": "string", "default": ""}
liquibase-3.2.json
context
Contexts in which the property is valid. Expected as a comma-separated list.
{"type": "string", "default": ""}
liquibase-3.2.json
global
Boolean. Defines whether the property is global or limited to the actual DATABASECHANGELOG. It is given as true or false.
{"type": "boolean", "default": true}
liquibase-3.2.json
changeSet
The changeset tag is a unit of change that Liquibase executes on a database and which is used to group database Change Types together. A list of changes created by multiple changesets are tracked in a changelog. A changeset is uniquely tagged by both an author and an id attributes (author:id), as well as the changelog file path. The id tag is only used as an identifier, it does not direct the order that changes are run and does not have to be an integer. If you do not know or do not want to save the actual author, use a placeholder value such as UNKNOWN. To execute the changeset, you must include both author and id.
{"type": "object", "default": {}, "required": ["id", "author"], "properties": {"id": {"type": "string", "default": ""}, "author": {"type": "string", "default": ""}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "dbms": {}, "runOnChange": {"type": "boolean", "default": false}, "runAlways": {"type": "boolean", "default": false}, "failOnError": {"type": "boolean", "default": true}, "onValidationFail": {"type": "string", "default": ""}, "runInTransaction": {"type": "boolean", "default": true}, "logicalFilePath": {"type": "string", "default": ""}, "objectQuotingStrategy": {"type": "string", "default": ""}, "created": {"type": "string", "default": ""}, "runOrder": {"type": "string", "default": ""}, "ignore": {"type": "boolean", "default": false}, "runWith": {"type": "string", "default": ""}, "validCheckSum": {"type": "array", "items": {"type": "string"}}, "preConditions": {}, "comment": {"type": "string", "default": ""}, "changes": {}, "rollback": {"anyOf": [{"type": "object", "additionalProperties": false, "properties": {}}, {}, {"type": "string"}, {"type": "object", "required": ["changeSetId", "changeSetAuthor"], "properties": {"changeSetId": {"type": "string"}, "changeSetAuthor": {"type": "string"}, "changeSetPath": {"type": "string"}}}]}, "modifySql": {"type": "array", "items": {}}}, "additionalProperties": true}
liquibase-3.2.json
id
Specifies an alpha-numeric identifier. Required
{"type": "string", "default": ""}
liquibase-3.2.json
author
Specifies the creator of the changeset. Required
{"type": "string", "default": ""}
liquibase-3.2.json
context
Controls whether a changeset is executed depending on runtime settings. Any string can be used for the context name and they are checked case-insensitively.
{"type": "string", "default": ""}
liquibase-3.2.json
labels
Controls whether a changeset is executed depending on runtime settings. Any string can be used for the label name and they are checked case-insensitively.
{"type": "string", "default": ""}
liquibase-3.2.json
runOnChange
Executes the changeset the first time and each time the changeset has been changed.
{"type": "boolean", "default": false}
liquibase-3.2.json
runAlways
Executes the changeset on every run, even if it has been run before.
{"type": "boolean", "default": false}
liquibase-3.2.json
failOnError
Defines whether the migration will fail if an error occurs while executing the changeset. Default value is true.
{"type": "boolean", "default": true}
liquibase-3.2.json
runInTransaction
Specifies whether the changeset can be ran as a single transaction (if possible). Default value is true.
{"type": "boolean", "default": true}
liquibase-3.2.json
logicalFilePath
Overrides the file name and path when creating the unique identifier of changesets. Required when moving or renaming changelog.
{"type": "string", "default": ""}
liquibase-3.2.json
objectQuotingStrategy
Controls how object names are quoted in the generated SQL or used in calls to the database. Different databases do different things to the names of objects. For example, Oracle converts everything to uppercase (unless quoted). There are three possible values. The default value is LEGACY. LEGACY - the same behavior as in Liquibase 2.0 QUOTE_ALL_OBJECTS - every object gets quoted. For example: person becomes "person". QUOTE_ONLY_RESERVED_WORDS - reserved keywords and invalid column names are quoted.
{"type": "string", "default": ""}
liquibase-3.2.json
created
Stores dates, versions, or any other string of value without using remarks (comments) attributes. Since 3.5
{"type": "string", "default": ""}
liquibase-3.2.json
runOrder
Overrides the order in the changelog from where the changeset with the runOrder="first|last" will be run. It is typically used when you want a changeset to be always executed after everything else but don't want to keep moving it to the end of the changelog. Setting the runOrder to last will automatically move it in the final changeset order.Since 3.5
{"type": "string", "default": ""}
liquibase-3.2.json
ignore
Ignores the changeset from the execution. Since 3.6
{"type": "boolean", "default": false}
liquibase-3.2.json
validCheckSum
Adds a checksum that is considered valid for this changeset, regardless of what is stored in the database. It is primarily used when you need to change a changeset and don't want errors thrown on databases on which it has already been run (not a recommended procedure). Special value "1:any" will match to any checksum and will not execute the changeset on ANY change. Since 1.7
{"type": "array", "items": {"type": "string"}}
liquibase-3.2.json
comment
Specifies the description of the changeset. XML comments will provide the same benefit. Future releases of Liquibase may be able to make use of <comment> tag comments to generate documentation.
{"type": "string", "default": ""}
liquibase-3.2.json
rollback
If you do not want to undo a change in a rollback mode, you can use an empty rollback tag.
{"type": "object", "additionalProperties": false, "properties": {}}
liquibase-3.2.json
include
The <include> tag is used within your master changelog to reference other changelogs.
{"type": "object", "default": {}, "properties": {"id": {"type": "string", "default": ""}, "author": {"type": "string", "default": ""}, "file": {"type": "string", "default": ""}, "relativeToChangelogFile": {"type": "boolean", "default": false}, "context": {"type": "string", "default": ""}, "labels": {"type": "string", "default": ""}, "ignore": {"type": "string", "default": ""}, "created": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
file
Name of the file you want to import required.
{"type": "string", "default": ""}
liquibase-3.2.json
relativeToChangelogFile
File path relative to the changelog file containing the element rather than to the classpath. Default: false
{"type": "boolean", "default": false}
liquibase-3.2.json
context
Appends a context (using an AND statement) to all contained changesets.
{"type": "string", "default": ""}
liquibase-3.2.json
labels
Appends a label to all contained changesets.
{"type": "string", "default": ""}
liquibase-3.2.json
includeAll
The <includeAll> tag allows you to specify a directory that contains multiple changelog files. It is used within your master changelog file to call on the directory and include all .xml files as changelog files, and all .sql files as individual changes.
{"type": "object", "default": {}, "properties": {"path": {"type": "string", "default": ""}, "errorIfMissingOrEmpty": {"type": "boolean", "default": false}, "relativeToChangelogFile": {"type": "boolean", "default": false}, "resourceComparator": {"type": "string", "default": ""}, "filter": {"type": "string", "default": ""}, "context": {"type": "string", "default": ""}}, "additionalProperties": true}
liquibase-3.2.json
path
Name of the path you want to reference.
{"type": "string", "default": ""}
liquibase-3.2.json
errorIfMissingOrEmpty
Controls what happens if the path listed does not exist or is an empty directory. Default: false. If set to true, the update will fail.
{"type": "boolean", "default": false}
liquibase-3.2.json
relativeToChangelogFile
File path relative to the changelog file containing the element rather than to the classpath. Default: false.
{"type": "boolean", "default": false}
liquibase-3.2.json
resourceComparator
A string containing the name of the class you want to use for sorting.
{"type": "string", "default": ""}