Skip to content

Commit

Permalink
chore: Add new schemas (no-changelog) (#13215)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Feb 13, 2025
1 parent f001edb commit 0c6eb6e
Show file tree
Hide file tree
Showing 38 changed files with 3,095 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"type": "object",
"properties": {
"Sentiment": {
"type": "string"
},
"SentimentScore": {
"type": "object",
"properties": {
"Mixed": {
"type": "number"
},
"Negative": {
"type": "number"
},
"Neutral": {
"type": "number"
},
"Positive": {
"type": "number"
}
},
"required": [
"Mixed",
"Negative",
"Neutral",
"Positive"
]
}
},
"required": [
"Sentiment",
"SentimentScore"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
{
"type": "object",
"properties": {
"TextDetections": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Confidence": {
"type": "number"
},
"DetectedText": {
"type": "string"
},
"Geometry": {
"type": "object",
"properties": {
"BoundingBox": {
"type": "object",
"properties": {
"Height": {
"type": "number"
},
"Left": {
"type": "number"
},
"Top": {
"type": "number"
},
"Width": {
"type": "number"
}
},
"required": [
"Height",
"Left",
"Top",
"Width"
]
},
"Polygon": {
"type": "array",
"items": {
"type": "object",
"properties": {
"X": {
"type": "number"
},
"Y": {
"type": "number"
}
},
"required": [
"X",
"Y"
]
}
}
},
"required": [
"BoundingBox",
"Polygon"
]
},
"Id": {
"type": "integer"
},
"Type": {
"type": "string"
},
"ParentId": {
"type": "integer"
}
},
"required": [
"Confidence",
"DetectedText",
"Geometry",
"Id",
"Type"
]
}
},
"TextModelVersion": {
"type": "string"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"type": "object",
"properties": {
"CreationTime": {
"type": "number"
},
"Media": {
"type": "object",
"properties": {
"MediaFileUri": {
"type": "string"
}
},
"required": [
"MediaFileUri"
]
},
"Settings": {
"type": "object",
"properties": {
"ChannelIdentification": {
"type": "boolean"
},
"ShowAlternatives": {
"type": "boolean"
}
},
"required": [
"ChannelIdentification",
"ShowAlternatives"
]
},
"StartTime": {
"type": "number"
},
"TranscriptionJobName": {
"type": "string"
},
"TranscriptionJobStatus": {
"type": "string"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"type": "object",
"properties": {
"object": {
"type": "string"
},
"id": {
"type": "string"
},
"userId": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"twoFactorEnabled": {
"type": "boolean"
},
"status": {
"type": "integer"
},
"collections": {
"type": "null"
},
"resetPasswordEnrolled": {
"type": "boolean"
},
"ssoExternalId": {
"type": "null"
},
"type": {
"type": "integer"
},
"permissions": {
"type": "null"
}
},
"required": [
"object",
"id",
"userId",
"name",
"email",
"twoFactorEnabled",
"status",
"collections",
"resetPasswordEnrolled",
"type",
"externalId",
"permissions"
]
}
Loading

0 comments on commit 0c6eb6e

Please sign in to comment.