mirror of
https://github.com/LukeHagar/plex-api-spec.git
synced 2025-12-11 04:20:52 +00:00
cleaned up Get media meta data
This commit is contained in:
8
src/models/director/filter.yaml
Normal file
8
src/models/director/filter.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
type: object
|
||||
required:
|
||||
- filter
|
||||
properties:
|
||||
filter:
|
||||
description: "The filter string used to query this director."
|
||||
type: string
|
||||
example: "director=235876"
|
||||
9
src/models/director/id.yaml
Normal file
9
src/models/director/id.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
properties:
|
||||
id:
|
||||
description: "Unique identifier for the director."
|
||||
type: integer
|
||||
format: int32
|
||||
example: 126522
|
||||
7
src/models/director/tag-key.yaml
Normal file
7
src/models/director/tag-key.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
type: object
|
||||
properties:
|
||||
tagKey:
|
||||
description: "A unique key associated with the director's tag, used for internal identification."
|
||||
type: string
|
||||
pattern: "^[a-fA-F0-9]{24}$"
|
||||
example: "5d776831151a60001f24d031"
|
||||
6
src/models/director/thumb.yaml
Normal file
6
src/models/director/thumb.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
type: object
|
||||
properties:
|
||||
thumb:
|
||||
description: "The URL of the thumbnail image for the director."
|
||||
type: string
|
||||
example: "https://metadata-static.plex.tv/8/people/8d65fa96804802e08f2de09fe014408e.jpg"
|
||||
@@ -5,4 +5,5 @@ properties:
|
||||
id:
|
||||
description: "Unique identifier for the producer."
|
||||
type: integer
|
||||
format: int32
|
||||
example: 126522
|
||||
|
||||
@@ -3,4 +3,5 @@ properties:
|
||||
tagKey:
|
||||
description: "A unique key associated with the producer's tag, used for internal identification."
|
||||
type: string
|
||||
pattern: "^[a-fA-F0-9]{24}$"
|
||||
example: "5d77683d85719b001f3a535e"
|
||||
|
||||
@@ -5,4 +5,5 @@ properties:
|
||||
id:
|
||||
description: "Unique identifier for the writer."
|
||||
type: integer
|
||||
format: int32
|
||||
example: 126522
|
||||
|
||||
@@ -3,4 +3,5 @@ properties:
|
||||
tagKey:
|
||||
description: "A unique key associated with the writers tag, used for internal identification."
|
||||
type: string
|
||||
pattern: "^[a-fA-F0-9]{24}$"
|
||||
example: "5d77683d85719b001f3a535e"
|
||||
|
||||
6
src/models/writer/thumb.yaml
Normal file
6
src/models/writer/thumb.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
type: object
|
||||
properties:
|
||||
thumb:
|
||||
description: "The URL of the thumbnail image for the writer."
|
||||
type: string
|
||||
example: "https://metadata-static.plex.tv/8/people/8d65fa96804802e08f2de09fe014408e.jpg"
|
||||
Reference in New Issue
Block a user