Skip to content

Naming of property stagingDir not consistent (leads to false negative schema validation) #115

Closed
@ed-fbiberger

Description

@ed-fbiberger

In the AmazonAthena schema description there is an inconsitent naming of the property "stagingDir" (l.605), but the required fields use "staging_dir" (l.629):

"AthenaServer": {
"type": "object",
"title": "AthenaServer",
"properties": {
"stagingDir": {
"type": "string",
"format": "uri",
"description": "Amazon Athena automatically stores query results and metadata information for each query that runs in a query result location that you can specify in Amazon S3.",
"examples": [
"s3://my_storage_account_name/my_container/path"
]
},
"schema": {
"type": "string",
"description": "Identify the schema in the data source in which your tables exist."
},
"catalog": {
"type": "string",
"description": "Identify the name of the Data Source, also referred to as a Catalog.",
"default": "awsdatacatalog"
},
"regionName": {
"type": "string",
"description": "The region your AWS account uses.",
"examples": ["eu-west-1"]
}
},
"required": [
"staging_dir",
"schema"
]
},

This leads to an invalid schema validation if the "stagingDir" naming is used.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions