Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing flow filter for multi essence and add format filter for sources #74

Merged
merged 3 commits into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions api/TimeAddressableMediaStore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,11 @@ paths:
is performed.
schema:
type: boolean
- name: format
in: query
description: Filter on source format.
schema:
$ref: '#/components/schemas/contentformat'
- $ref: '#/components/parameters/trait_resource_paged_key'
- $ref: '#/components/parameters/trait_paged_limit'
responses:
Expand Down Expand Up @@ -613,7 +618,7 @@ paths:
in: query
description: Filter on flow format.
schema:
$ref: '#/components/schemas/flowformat'
$ref: '#/components/schemas/contentformat'
- name: codec
in: query
description: Filter on flow codec.
Expand Down Expand Up @@ -681,7 +686,7 @@ paths:
in: query
description: Filter on flow format.
schema:
$ref: '#/components/schemas/flowformat'
$ref: '#/components/schemas/contentformat'
- name: codec
in: query
description: Filter on flow codec.
Expand Down Expand Up @@ -1759,13 +1764,14 @@ components:
title: UUID
pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
type: string
flowformat:
title: Flow Format
description: identifies the flow format using a URN string.
contentformat:
title: Content Format
description: Identifies the content format for a flow or source using a URN string.
enum:
- urn:x-nmos:format:video
- urn:x-nmos:format:audio
- urn:x-nmos:format:data
- urn:x-nmos:format:multi
type: string
mimetype:
title: MIME Type
Expand Down
Loading