Skip to content

Commit 8a75395

Browse files
release: v0.1.3
1 parent 55cdbad commit 8a75395

8 files changed

Lines changed: 16 additions & 16 deletions

File tree

extension/content/docs/specification/metadata.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Metadata
55
## Definitions
66

77
- <a id="definitions/Package"></a>**`Package`** *(object)*
8-
- <a id="definitions/Package/properties/%24schema"></a>**`$schema`**: Must be: `"https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/profile.json"`.
8+
- <a id="definitions/Package/properties/%24schema"></a>**`$schema`**: Must be: `"https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/profile.json"`.
99
- <a id="definitions/Package/properties/resources"></a>**`resources`** *(array, required)*: Length must be at least 1.
1010
- <a id="definitions/Package/properties/resources/items"></a>**Items**: Refer to *[#/definitions/Resource](#definitions/Resource)*.
1111
- <a id="definitions/Resource"></a>**`Resource`**
@@ -14,7 +14,7 @@ title: Metadata
1414
- <a id="definitions/Resource/oneOf/1"></a>: Refer to *[#/definitions/Table2Resource](#definitions/Table2Resource)*.
1515
- <a id="definitions/Table1Resource"></a>**`Table1Resource`** *(object)*: Data records have to conform to the Table1 schema.
1616
- <a id="definitions/Table1Resource/properties/name"></a>**`name`**: Must be: `"table1"`.
17-
- <a id="definitions/Table1Resource/properties/schema"></a>**`schema`**: Must be: `"https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table1.json"`.
17+
- <a id="definitions/Table1Resource/properties/schema"></a>**`schema`**: Must be: `"https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table1.json"`.
1818
- <a id="definitions/Table2Resource"></a>**`Table2Resource`** *(object)*: Data items have to conform to the Table2 schema.
1919
- <a id="definitions/Table2Resource/properties/name"></a>**`name`**: Must be: `"table2"`.
20-
- <a id="definitions/Table2Resource/properties/schema"></a>**`schema`**: Must be: `"https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table2.json"`.
20+
- <a id="definitions/Table2Resource/properties/schema"></a>**`schema`**: Must be: `"https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table2.json"`.

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "extension",
33
"type": "module",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"private": true,
66
"slug": "extensiondp",
77
"title": "Extension DP",

extension/profile.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"required": ["$schema", "resources"],
1212
"properties": {
1313
"$schema": {
14-
"const": "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/profile.json"
14+
"const": "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/profile.json"
1515
},
1616
"resources": {
1717
"type": "array",
@@ -41,7 +41,7 @@
4141
"const": "table1"
4242
},
4343
"schema": {
44-
"const": "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table1.json"
44+
"const": "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table1.json"
4545
}
4646
}
4747
},
@@ -54,7 +54,7 @@
5454
"const": "table2"
5555
},
5656
"schema": {
57-
"const": "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table2.json"
57+
"const": "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table2.json"
5858
}
5959
}
6060
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "project",
33
"type": "module",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"private": true,
66
"slug": "extensiondp",
77
"title": "Extension DP",

sdk-py/extensiondp/profile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
class Table1Resource(TypedDict):
99
name: Literal['table1']
1010
schema: Literal[
11-
'https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table1.json'
11+
'https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table1.json'
1212
]
1313

1414

1515
class Table2Resource(TypedDict):
1616
name: Literal['table2']
1717
schema: Literal[
18-
'https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table2.json'
18+
'https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table2.json'
1919
]
2020

2121

@@ -26,7 +26,7 @@ class Table2Resource(TypedDict):
2626
'Package',
2727
{
2828
'$schema': Literal[
29-
'https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/profile.json'
29+
'https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/profile.json'
3030
],
3131
'resources': Sequence[Resource],
3232
},

sdk-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "extensiondp"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
slug = "extensiondp"
55
title = "Extension DP"
66
description = "Extension DP (Data Package Extension Template) is a GitHub repository template for rapid Data Package extension development"

sdk-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "extensiondp",
33
"type": "module",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"slug": "extensiondp",
66
"title": "Extension DP",
77
"description": "Extension DP (Data Package Extension Template) is a GitHub repository template for rapid Data Package extension development",

sdk-ts/profile.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export type ExtensionDataPackageProfile = Package
44
export type Resource = Table1Resource | Table2Resource
55

66
export interface Package {
7-
$schema: "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/profile.json"
7+
$schema: "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/profile.json"
88
/**
99
* @minItems 1
1010
*/
@@ -15,12 +15,12 @@ export interface Package {
1515
*/
1616
export interface Table1Resource {
1717
name: "table1"
18-
schema: "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table1.json"
18+
schema: "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table1.json"
1919
}
2020
/**
2121
* Data items have to conform to the Table2 schema
2222
*/
2323
export interface Table2Resource {
2424
name: "table2"
25-
schema: "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.2/extension/schemas/table2.json"
25+
schema: "https://raw.githubusercontent.com/datisthq/extensiondp/v0.1.3/extension/schemas/table2.json"
2626
}

0 commit comments

Comments
 (0)