ObjectiveLineAsset
Documentation for the ObjectiveLineAsset asset type.
Location
Objective/ObjectiveLines
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/ObjectiveLineAsset.schema.json" Schema
Category
stringnull
ObjectiveIds array
Array items: string
NextObjectiveLineIds arraynull
Array items: string
TitleId
stringnull
DescriptionId
stringnull
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "ObjectiveLineAsset.json",
"title": "ObjectiveLineAsset",
"description": "ObjectiveLineAsset asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"Category": {
"type": [
"string",
"null"
]
},
"ObjectiveIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
},
"NextObjectiveLineIds": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"uniqueItems": true
},
"TitleId": {
"type": [
"string",
"null"
]
},
"DescriptionId": {
"type": [
"string",
"null"
]
}
}
}