{
"$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-description-schema.json",
"title": "SqlApplicationConfigurationDescription",
"description": "Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.",
"type": "object",
"properties": {
"InputDescriptions": {
"allOf": [
{
"$ref": "#/components/schemas/InputDescriptions"
},
{
"description": "The array of InputDescription objects describing the input streams used by the application."
}
]
},
"OutputDescriptions": {
"allOf": [
{
"$ref": "#/components/schemas/OutputDescriptions"
},
{
"description": "The array of OutputDescription objects describing the destination streams used by the application."
}
]
},
"ReferenceDataSourceDescriptions": {
"allOf": [
{
"$ref": "#/components/schemas/ReferenceDataSourceDescriptions"
},
{
"description": "The array of ReferenceDataSourceDescription objects describing the reference data sources used by the application."
}
]
}
}
}