mirror of
https://github.com/navidrome/navidrome.git
synced 2025-07-21 02:41:48 +03:00
28 lines
666 B
YAML
28 lines
666 B
YAML
allOf:
|
|
- $ref: './ResourceObject.yml'
|
|
- type: object
|
|
properties:
|
|
attributes:
|
|
$ref: './ArtistAttributes.yml'
|
|
relationships:
|
|
type: object
|
|
properties:
|
|
tracks:
|
|
type: object
|
|
properties:
|
|
data:
|
|
type: array
|
|
items:
|
|
$ref: './ArtistTrackRelationship.yml'
|
|
required:
|
|
- data
|
|
albums:
|
|
type: object
|
|
properties:
|
|
data:
|
|
type: array
|
|
items:
|
|
$ref: './ArtistAlbumRelationship.yml'
|
|
required:
|
|
- data
|