mirror of
https://github.com/navidrome/navidrome.git
synced 2025-07-21 02:41:48 +03:00
21 lines
474 B
YAML
21 lines
474 B
YAML
allOf:
|
|
- $ref: './ResourceObject.yml'
|
|
- type: object
|
|
properties:
|
|
attributes:
|
|
$ref: './AlbumAttributes.yml'
|
|
relationships:
|
|
type: object
|
|
properties:
|
|
artists:
|
|
type: array
|
|
items:
|
|
$ref: './AlbumArtistRelationship.yml'
|
|
tracks:
|
|
type: array
|
|
items:
|
|
$ref: './AlbumTrackRelationship.yml'
|
|
required:
|
|
- artists
|
|
- tracks
|