{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-sql-application-configuration-schema.json",
"title": "SqlApplicationConfiguration",
"description": "Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.",
"type": "object",
"properties": {
"Inputs": {
"allOf": [
{
"$ref": "#/components/schemas/Inputs"
},
{
"description": "The array of Input objects describing the input streams used by the application."
}
]
},
"Outputs": {
"allOf": [
{
"$ref": "#/components/schemas/Outputs"
},
{
"description": "The array of Output objects describing the destination streams used by the application."
}
]
},
"ReferenceDataSources": {
"allOf": [
{
"$ref": "#/components/schemas/ReferenceDataSources"
},
{
"description": "The array of ReferenceDataSource objects describing the reference data sources used by the application."
}
]
}
}
}