Skip to content

Commit f440b43

Browse files
committed
Support Audio as a domain in Schema
PiperOrigin-RevId: 699716595
1 parent c042313 commit f440b43

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

RELEASE.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
## Bug Fixes and Other Changes
88

9+
* Add Audio as a schema domain.
10+
911
## Breaking Changes
1012

1113
## Deprecations

tensorflow_metadata/proto/v0/schema.proto

+5-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ message ValueCountList {
144144
}
145145

146146
// Describes schema-level information about a specific feature.
147-
// NextID: 36
147+
// NextID: 37
148148
message Feature {
149149
// The name of the feature.
150150
optional string name = 1; // required
@@ -205,6 +205,7 @@ message Feature {
205205
// Supported semantic domains.
206206
NaturalLanguageDomain natural_language_domain = 24;
207207
ImageDomain image_domain = 25;
208+
AudioDomain audio_domain = 36;
208209
MIDDomain mid_domain = 26;
209210
URLDomain url_domain = 27;
210211
TimeDomain time_domain = 28;
@@ -637,6 +638,9 @@ message ImageDomain {
637638
optional int64 max_image_byte_size = 2;
638639
}
639640

641+
// Audio data.
642+
message AudioDomain {}
643+
640644
// Knowledge graph ID, see: https://www.wikidata.org/wiki/Property:P646
641645
message MIDDomain {}
642646

0 commit comments

Comments
 (0)