UNPKG

@aliceplex/core

Version:

[![License][license_badge]][license] [![Pipelines][pipelines_badge]][pipelines] [![Coverage][coverage_badge]][pipelines] [![NPM][npm_badge]][npm] [![semantic-release][semantic_release_badge]][semantic_release]

27 lines (26 loc) 813 B
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://aliceplex-corejs.joshuaavalon.app/artist.schema.json", "title": "Artist", "description": "A music artist in Plex.", "type": "object", "properties": { "similar": { "$ref": "./defs.schema.json#/definitions/uniqueStringArray" }, "summary": { "type": ["string", "null"] }, "sort_title": { "type": ["string", "null"] }, "genres": { "$ref": "./defs.schema.json#/definitions/uniqueStringArray" }, "collections": { "$ref": "./defs.schema.json#/definitions/uniqueStringArray" } }, "additionalProperties": false, "required": ["similar", "summary", "genres", "collections"] }