Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jablan committed Dec 13, 2023
1 parent 4fdbef0 commit 504fb40
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
29 changes: 16 additions & 13 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@
"type": "string"
},
"data_type": {
"$ref": "#/components/parameters/custom_metadata_data_type/schema"
"$ref": "#/components/schemas/custom_metadata_data_type"
},
"user": {
"$ref": "#/components/schemas/user_preview"
Expand Down Expand Up @@ -766,6 +766,19 @@
]
}
},
"custom_metadata_data_type": {
"type": "string",
"enum": [
"boolean",
"date",
"link",
"multi_select",
"number",
"single_select",
"string",
"text"
]
},
"key_preview": {
"type": "object",
"title": "key_preview",
Expand Down Expand Up @@ -4233,17 +4246,7 @@
"description": "Data Type of Custom Metadata Property",
"required": false,
"schema": {
"type": "string",
"enum": [
"boolean",
"date",
"link",
"multi_select",
"number",
"single_select",
"string",
"text"
]
"$ref": "#/components/schemas/custom_metadata_data_type"
},
"example": "boolean"
},
Expand Down Expand Up @@ -6220,7 +6223,7 @@
"description": "Data Type of Custom Metadata Property",
"required": true,
"schema": {
"$ref": "#/components/parameters/custom_metadata_data_type/schema"
"$ref": "#/components/schemas/custom_metadata_data_type"
},
"example": "boolean"
},
Expand Down
2 changes: 2 additions & 0 deletions schemas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ schemas:
"$ref": schemas/comment_reaction.yaml#/comment_reaction
custom_metadata_property:
"$ref": schemas/custom_metadata_property.yaml#/custom_metadata_property
custom_metadata_data_type:
"$ref": schemas/custom_metadata_data_type.yaml#/data_type
key_preview:
"$ref": schemas/key_preview.yaml#/key_preview
affected_count:
Expand Down
1 change: 1 addition & 0 deletions schemas/custom_metadata_data_type.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
data_type:
type: string
enum:
Expand Down

0 comments on commit 504fb40

Please sign in to comment.