Skip to content

Commit 6e63a5d

Browse files
committed
fix: Updated table1 schema
1 parent 6a44132 commit 6e63a5d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

extension/content/docs/specification/data/table1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ title: Table1
2929
</code>
3030
</td>
3131
<td>
32-
<p>Unique identifier of the record</p>
32+
<p>Unique identifier for the record</p>
3333
<strong>Constraints</strong>
3434
<ul>
3535
<li>

extension/schemas/table1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{
99
"name": "id",
1010
"type": "string",
11-
"description": "Unique identifier of the record",
11+
"description": "Unique identifier for the record",
1212
"examples": ["t1-001", "t1-002", "t1-003"],
1313
"constraints": {
1414
"required": true,

sdk-py/extensiondp/schemas/table1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class Table1(TypedDict):
1111
id: str
1212
"""
13-
Unique identifier of the record
13+
Unique identifier for the record
1414
"""
1515
name: str
1616
"""

sdk-ts/schemas/table1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
export interface Table1 {
77
/**
8-
* Unique identifier of the record
8+
* Unique identifier for the record
99
*/
1010
id: string
1111
/**

0 commit comments

Comments
 (0)