{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatabaseScript", "title": "DatabaseScript", "type": "object", "description": "Represents a database script included in an export or import deployment.", "properties": { "fileName": { "type": "string", "description": "The file name of the database script.", "example": "create_tables.sql" }, "orderId": { "type": "integer", "description": "The execution order of the database script, starting at 1.", "minimum": 1, "example": 1 }, "url": { "type": "string", "format": "uri", "description": "URL to download the database script file." } } }