diff --git a/profiles/source/dictionary/dialect.yaml b/profiles/source/dictionary/dialect.yaml index b519a5d0..45fa9b9a 100644 --- a/profiles/source/dictionary/dialect.yaml +++ b/profiles/source/dictionary/dialect.yaml @@ -41,6 +41,8 @@ tableDialect: "$ref": "#/definitions/sheetNumber" sheetName: "$ref": "#/definitions/sheetName" + table: + "$ref": "#/definitions/table" header: title: Header description: Specifies if the file includes a header row, always as the first row in the file. @@ -171,3 +173,5 @@ sheetNumber: minimum: 1 sheetName: type: string +table: + type: string diff --git a/profiles/target/2.0/datapackage.json b/profiles/target/2.0/datapackage.json index 935e4132..e43e0bb8 100644 --- a/profiles/target/2.0/datapackage.json +++ b/profiles/target/2.0/datapackage.json @@ -662,6 +662,9 @@ }, "sheetName": { "type": "string" + }, + "table": { + "type": "string" } } }, diff --git a/profiles/target/2.0/dataresource.json b/profiles/target/2.0/dataresource.json index 0942e785..c8823d47 100644 --- a/profiles/target/2.0/dataresource.json +++ b/profiles/target/2.0/dataresource.json @@ -426,6 +426,9 @@ }, "sheetName": { "type": "string" + }, + "table": { + "type": "string" } } }, diff --git a/profiles/target/2.0/tabledialect.json b/profiles/target/2.0/tabledialect.json index b0ea4859..00293e71 100644 --- a/profiles/target/2.0/tabledialect.json +++ b/profiles/target/2.0/tabledialect.json @@ -138,6 +138,9 @@ }, "sheetName": { "type": "string" + }, + "table": { + "type": "string" } } } \ No newline at end of file