schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
calqulus-pipeline.schema.json
globalOption set
Used to specify which set the exported parameter will use. In most cases, this will be either left or right. This option is only used in two cases; where there is also an export option set, or on the last step in a list. In the latter case, the step's set is used only if there's no set defined on the parent output node. If this option is not set, the JSON output will use set: null.
{"additionalProperties": false, "type": ["string"], "name": "set"}
calqulus-pipeline.schema.json
globalOption space
This option lets you reference a space where you want the input data for the step to be translated into. All named inputs will automatically be converted. NOTE: This is not yet implemented for segments.
{"additionalProperties": false, "type": ["string"], "name": "space"}
calqulus-pipeline.schema.json
categoryOption Angle project
If set to a string, the angle will be calculated in two dimensions on the specified coordinate plane by ignoring the component of the input signals which is not part of the plane. Using a PlaneSequence, projects the input vectors on the provided plane. Note: _The projection is only applied for vector-based angles and is ignored when calculating joint angles._
{"additionalProperties": false, "type": ["string"], "name": "project", "category": "Angle"}
calqulus-pipeline.schema.json
categoryOption Angle rotationOrder
The rotation order to use for calculating the Euler angle. Possible rotation orders are: Cardan sequence: XYZ YZX ZXY XZY YXZ ZYX Euler sequence: XYX XZX YXY YZY ZXZ ZYZ
{"additionalProperties": false, "type": ["string"], "name": "rotationOrder", "category": "Angle"}
calqulus-pipeline.schema.json
categoryOption Angle unwrap
When set to true, an event, or a numeric value, the unwrap option shifts the angle phases in order to achieve a continuous curve, i.e., it tries to detect when an angle crosses over its available range (-PI to PI for radians, -180 to 180 degrees). This allows for tracking angles on movements that goes outside of the typical angle range. To do this, it looks for jumps between consecutive angles. If the jump is greater than a threshold of half the range (PI for radians, 180 for degrees), the angle is shifted by adding multiples of of the range until the jump no longer crosses the threshold. The unwrap algorithm is run over all available components. If set to true or 0, the algorithm aligns the unwrap to the start of the sequence. I.e., it assumes the first frame is correct in being within the original range and the following angles are moved to follow suit. If set to an Event or a Number, the algorithm will assume that the corresponding frame is correct in being within the original range. All other angles will be shifted to follow suit. This enables tracking a rotational movement where the angle for a specific event is intended to be within the standard range (-PI to PI for radians, -180 to 180 degrees). IF a supplied event has more than one instance, the first instance is used. Note: _The unwrap algorithm is sensitive to noise, which may introduce unexpected artifacts. Please consider filtering the signal(s) before calculating its angle using unwrap._
{"additionalProperties": false, "type": ["string", "boolean", "number"], "name": "unwrap", "category": "Angle"}
calqulus-pipeline.schema.json
categoryOption Aggregation useCycles
If the signal has cycles defined, the aggregation will be run separately over each signal, and a list of values are returned, one for each cycle. To avoid this behaviour, set useCycles to false. For information on how to set event cycles on a signal, see the eventMask step.
{"additionalProperties": false, "type": ["string", "boolean"], "name": "useCycles", "category": "Aggregation"}
calqulus-pipeline.schema.json
categoryOption Arithmetic frameSequenceOrder
If set to any value but none, the input signals will pass through a function which returns a list of signals where each value is from a frame greater than or equal to the frame of the corresponding value from the preceding Signal. If set to forward, it will start from the first value of the first (leftmost) input signal (operand) and the algorithm will look at subsequent operands (to the right) one "row" at a time. Conversely, if set to reverse, the event sequencing uses the reverse order of operands and goes from right to left. If a full "row" of values could not be matched, it is not included in the result, i.e., all operands will be of the same length. This is useful, for example, when calculating the distance between two signals at a certain event. The function will only apply if all input signals have applied a Frames filter, otherwise the signals are left untouched. Example subtract: [LeftFoot.y@LFS, RightFoot.y@RFS] frameSequenceOrder: reverse _Creates an event sequence from the inputs, starting from the second operand (RFS event) and creates event pairs RFS -> LFS out of the values. It then subtracts each frame from the RightFoot from the corresponding LeftFoot frame._ _If frameSequenceOrder had been set to forward, it would have created pairs going from LFS -> RFS instead._ _Using the frameSequenceOrder option ensures that the operands starts with the intended event and that both operands have the same length._
{"additionalProperties": false, "type": ["string"], "name": "frameSequenceOrder", "category": "Arithmetic"}
lazydocker.json
Settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"color": {"type": "string", "oneOf": [{"enum": ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "bold", "default", "reverse", "underline", "strikethrough"]}, {"pattern": "^#[0-9a-fA-F]{6}$", "examples": ["#ff00ff"]}]}}, "properties": {"gui": {"type": "object", "properties": {"scrollHeight": {"type": "integer", "minimum": 1, "default": 2}, "language": {"type": "string", "enum": ["auto", "en", "pl", "nl", "de", "tr"], "default": "auto"}, "theme": {"type": "object", "properties": {"activeBorderColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "inactiveBorderColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "selectedLineBgColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "optionsTextColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}}}, "returnImmediately": {"type": "boolean", "default": false}, "wrapMainPanel": {"type": "boolean", "default": true}, "sidePanelWidth": {"type": "number", "minimum": 0, "default": 0.333}, "showBottomLine": {"type": "boolean", "default": true}, "expandFocusedSidePanel": {"type": "boolean", "default": false}, "screenMode": {"type": "string", "enum": ["normal", "half", "fullscreen"], "default": "normal"}, "containerStatusHealthStyle": {"type": "string", "enum": ["long", "short", "icon"], "default": "long"}}}, "logs": {"type": "object", "properties": {"timestamps": {"type": "boolean", "default": false}, "since": {"type": "string", "default": "60m"}, "tail": {"oneOf": [{"type": "string"}, {"type": "integer", "minimum": 0, "examples": [200]}], "default": ""}}}, "commandTemplates": {"type": "object", "properties": {"dockerCompose": {"type": "string", "default": "docker-compose"}, "restartService": {"type": "string", "default": "{{ .DockerCompose }} restart {{ .Service.Name }}"}, "up": {"type": "string", "default": "{{ .DockerCompose }} up -d"}, "down": {"type": "string", "default": "{{ .DockerCompose }} down"}, "downWithVolumes": {"type": "string", "default": "{{ .DockerCompose }} down --volumes"}, "upService": {"type": "string", "default": "{{ .DockerCompose }} up -d {{ .Service.Name }}"}, "startService": {"type": "string", "default": "{{ .DockerCompose }} start {{ .Service.Name }}"}, "stopService": {"type": "string", "default": "{{ .DockerCompose }} stop {{ .Service.Name }}"}, "serviceLogs": {"type": "string", "default": "{{ .DockerCompose }} logs --since=60m --follow {{ .Service.Name }}"}, "viewServiceLogs": {"type": "string", "default": "{{ .DockerCompose }} logs --follow {{ .Service.Name }}"}, "rebuildService": {"type": "string", "default": "{{ .DockerCompose }} up -d --build {{ .Service.Name }}"}, "recreateService": {"type": "string", "default": "{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}"}, "allLogs": {"type": "string", "default": "{{ .DockerCompose }} logs --tail=300 --follow"}, "viewAlLogs": {"type": "string", "default": "{{ .DockerCompose }} logs"}, "dockerComposeConfig": {"type": "string", "default": "{{ .DockerCompose }} config"}, "checkDockerComposeConfig": {"type": "string", "default": "{{ .DockerCompose }} config --quiet"}, "serviceTop": {"type": "string", "default": "{{ .DockerCompose }} top {{ .Service.Name }}"}}}, "os": {"type": "object", "properties": {"openCommand": {"type": "string", "default": "open {{filename}}"}, "openLinkCommand": {"type": "string", "default": "open {{link}}"}}}, "stats": {"type": "object", "properties": {"graphs": {"type": "array", "items": {"type": "object", "properties": {"caption": {"type": "string", "examples": ["CPU (%)"]}, "statPath": {"type": "string", "examples": ["DerivedStats.CPUPercentage"]}, "color": {}}}}}}, "customCommands": {"type": "object", "properties": {"containers": {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"name": {"type": "string", "examples": ["bash"]}, "attach": {"type": "boolean"}, "command": {"type": "string", "examples": ["docker exec -it {{ .Container.ID }} bash"]}, "serviceNames": {"type": "array", "uniqueItems": true, "items": {"type": "string"}, "default": []}}}}}}, "replacements": {"type": "object", "patternProperties": {".": {"type": "object", "patternProperties": {".": {"type": "string", "examples": ["<dev>", "<prod>"]}}}}}}, "type": "object"}
lazydocker.json
gui
UI settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"scrollHeight": {"type": "integer", "minimum": 1, "default": 2}, "language": {"type": "string", "enum": ["auto", "en", "pl", "nl", "de", "tr"], "default": "auto"}, "theme": {"type": "object", "properties": {"activeBorderColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "inactiveBorderColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "selectedLineBgColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "optionsTextColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}}}, "returnImmediately": {"type": "boolean", "default": false}, "wrapMainPanel": {"type": "boolean", "default": true}, "sidePanelWidth": {"type": "number", "minimum": 0, "default": 0.333}, "showBottomLine": {"type": "boolean", "default": true}, "expandFocusedSidePanel": {"type": "boolean", "default": false}, "screenMode": {"type": "string", "enum": ["normal", "half", "fullscreen"], "default": "normal"}, "containerStatusHealthStyle": {"type": "string", "enum": ["long", "short", "icon"], "default": "long"}}}
lazydocker.json
scrollHeight
A scroll height https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "integer", "minimum": 1, "default": 2}
lazydocker.json
language
A language https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "enum": ["auto", "en", "pl", "nl", "de", "tr"], "default": "auto"}
lazydocker.json
theme
Theme settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"activeBorderColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "inactiveBorderColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "selectedLineBgColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}, "optionsTextColor": {"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}}}
lazydocker.json
activeBorderColor
An active border color https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}
lazydocker.json
inactiveBorderColor
An inactive border color https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}
lazydocker.json
selectedLineBgColor
A selected line background color https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}
lazydocker.json
optionsTextColor
An option text color https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "uniqueItems": true, "minItems": 1, "items": {}}
lazydocker.json
returnImmediately
Whether to return immediately https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "boolean", "default": false}
lazydocker.json
wrapMainPanel
Whether to wrap main panel https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "boolean", "default": true}
lazydocker.json
sidePanelWidth
A side panel ratio of screen's width https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "number", "minimum": 0, "default": 0.333}
lazydocker.json
showBottomLine
Whether to show bottom line https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "boolean", "default": true}
lazydocker.json
expandFocusedSidePanel
Whether to expand focused side panel https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "boolean", "default": false}
lazydocker.json
screenMode
A screen mode https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "enum": ["normal", "half", "fullscreen"], "default": "normal"}
lazydocker.json
containerStatusHealthStyle
A style of container status and it's health display https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "enum": ["long", "short", "icon"], "default": "long"}
lazydocker.json
logs
Log settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"timestamps": {"type": "boolean", "default": false}, "since": {"type": "string", "default": "60m"}, "tail": {"oneOf": [{"type": "string"}, {"type": "integer", "minimum": 0, "examples": [200]}], "default": ""}}}
lazydocker.json
timestamps
Whether to show timestamps https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "boolean", "default": false}
lazydocker.json
since
A start time https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "60m"}
lazydocker.json
tail
A last line count https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"oneOf": [{"type": "string"}, {"type": "integer", "minimum": 0, "examples": [200]}], "default": ""}
lazydocker.json
commandTemplates
Command templates https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"dockerCompose": {"type": "string", "default": "docker-compose"}, "restartService": {"type": "string", "default": "{{ .DockerCompose }} restart {{ .Service.Name }}"}, "up": {"type": "string", "default": "{{ .DockerCompose }} up -d"}, "down": {"type": "string", "default": "{{ .DockerCompose }} down"}, "downWithVolumes": {"type": "string", "default": "{{ .DockerCompose }} down --volumes"}, "upService": {"type": "string", "default": "{{ .DockerCompose }} up -d {{ .Service.Name }}"}, "startService": {"type": "string", "default": "{{ .DockerCompose }} start {{ .Service.Name }}"}, "stopService": {"type": "string", "default": "{{ .DockerCompose }} stop {{ .Service.Name }}"}, "serviceLogs": {"type": "string", "default": "{{ .DockerCompose }} logs --since=60m --follow {{ .Service.Name }}"}, "viewServiceLogs": {"type": "string", "default": "{{ .DockerCompose }} logs --follow {{ .Service.Name }}"}, "rebuildService": {"type": "string", "default": "{{ .DockerCompose }} up -d --build {{ .Service.Name }}"}, "recreateService": {"type": "string", "default": "{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}"}, "allLogs": {"type": "string", "default": "{{ .DockerCompose }} logs --tail=300 --follow"}, "viewAlLogs": {"type": "string", "default": "{{ .DockerCompose }} logs"}, "dockerComposeConfig": {"type": "string", "default": "{{ .DockerCompose }} config"}, "checkDockerComposeConfig": {"type": "string", "default": "{{ .DockerCompose }} config --quiet"}, "serviceTop": {"type": "string", "default": "{{ .DockerCompose }} top {{ .Service.Name }}"}}}
lazydocker.json
dockerCompose
A docker compose command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "docker-compose"}
lazydocker.json
restartService
A restart service command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} restart {{ .Service.Name }}"}
lazydocker.json
up
An up command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} up -d"}
lazydocker.json
down
A down command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} down"}
lazydocker.json
downWithVolumes
A down with volumes command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} down --volumes"}
lazydocker.json
upService
An up service command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} up -d {{ .Service.Name }}"}
lazydocker.json
startService
A start service command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} start {{ .Service.Name }}"}
lazydocker.json
stopService
A stop service command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} stop {{ .Service.Name }}"}
lazydocker.json
serviceLogs
A service logs command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} logs --since=60m --follow {{ .Service.Name }}"}
lazydocker.json
viewServiceLogs
A view service logs command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} logs --follow {{ .Service.Name }}"}
lazydocker.json
rebuildService
A rebuild service command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} up -d --build {{ .Service.Name }}"}
lazydocker.json
recreateService
A recreate service command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}"}
lazydocker.json
allLogs
An all logs command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} logs --tail=300 --follow"}
lazydocker.json
viewAlLogs
A view al logs command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} logs"}
lazydocker.json
dockerComposeConfig
A docker compose config command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} config"}
lazydocker.json
checkDockerComposeConfig
A check docker compose config command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} config --quiet"}
lazydocker.json
serviceTop
A service top command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "{{ .DockerCompose }} top {{ .Service.Name }}"}
lazydocker.json
os
OS settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"openCommand": {"type": "string", "default": "open {{filename}}"}, "openLinkCommand": {"type": "string", "default": "open {{link}}"}}}
lazydocker.json
openCommand
An open command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "open {{filename}}"}
lazydocker.json
openLinkCommand
An open link command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "default": "open {{link}}"}
lazydocker.json
stats
Statistic settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"graphs": {"type": "array", "items": {"type": "object", "properties": {"caption": {"type": "string", "examples": ["CPU (%)"]}, "statPath": {"type": "string", "examples": ["DerivedStats.CPUPercentage"]}, "color": {}}}}}}
lazydocker.json
graphs
Graph settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "items": {"type": "object", "properties": {"caption": {"type": "string", "examples": ["CPU (%)"]}, "statPath": {"type": "string", "examples": ["DerivedStats.CPUPercentage"]}, "color": {}}}}
lazydocker.json
caption
A caption https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "examples": ["CPU (%)"]}
lazydocker.json
statPath
A path https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "examples": ["DerivedStats.CPUPercentage"]}
lazydocker.json
color
A color https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{}
lazydocker.json
customCommands
Custom commands https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "properties": {"containers": {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"name": {"type": "string", "examples": ["bash"]}, "attach": {"type": "boolean"}, "command": {"type": "string", "examples": ["docker exec -it {{ .Container.ID }} bash"]}, "serviceNames": {"type": "array", "uniqueItems": true, "items": {"type": "string"}, "default": []}}}}}}
lazydocker.json
containers
Container settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"name": {"type": "string", "examples": ["bash"]}, "attach": {"type": "boolean"}, "command": {"type": "string", "examples": ["docker exec -it {{ .Container.ID }} bash"]}, "serviceNames": {"type": "array", "uniqueItems": true, "items": {"type": "string"}, "default": []}}}}
lazydocker.json
name
A name https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "examples": ["bash"]}
lazydocker.json
attach
Whether to attach https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "boolean"}
lazydocker.json
command
A command https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "examples": ["docker exec -it {{ .Container.ID }} bash"]}
lazydocker.json
serviceNames
Service names https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "array", "uniqueItems": true, "items": {"type": "string"}, "default": []}
lazydocker.json
items
A service name https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string"}
lazydocker.json
replacements
Replacement settings https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "patternProperties": {".": {"type": "object", "patternProperties": {".": {"type": "string", "examples": ["<dev>", "<prod>"]}}}}}
lazydocker.json
.
A replacement group https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "object", "patternProperties": {".": {"type": "string", "examples": ["<dev>", "<prod>"]}}}
lazydocker.json
.
A replacement https://github.com/jesseduffield/lazydocker/blob/master/docs/Config.md#default
{"type": "string", "examples": ["<dev>", "<prod>"]}
band-manifest.json
color
The format of the color values is 'RRGGBB' where RR is the hex value for red, GG for green, and BB for blue.
{"type": "string", "pattern": "^[A-Fa-f0-9]{6}$"}
band-manifest.json
elementId
The numeric id of the icon layout element based on the predefined layout selected.
{"enum": ["1", "2", "3", "11", "12", "21", "22", "31", "32"]}
band-manifest.json
condition
If set, then must be set to 'true' for this release
{"enum": ["true"]}
band-manifest.json
url
The URL to be referenced. For resources that require authentication, the URL must be HTTPS.
{"type": "string", "format": "uri"}
band-manifest.json
style
Specifies the kind of web resource being accessed. Permitted values are 'Simple' and 'Feed'.
{"type": "string", "pattern": "^([sS]imple|[fF]eed)$", "default": "Simple"}
band-manifest.json
content
This member specifies how to extract content from the web response.
{"type": "object", "minProperties": 1, "additionalProperties": {"type": "string"}}
band-manifest.json
layout
The name of the layout for the page. The layout name should refer to one of the predefined page layouts.
{"enum": ["MSBand_ScrollingText", "MSBand_NoScrollingText", "MSBand_SingleMetric", "MSBand_SingleMetricWithIcon", "MSBand_MetricsWithIcons", "MSBand_SingleMetricWithSecondary"]}
band-manifest.json
iconBindings
Similar to textBindings, but used to select one of the web tile icons in icons list for each icon in the page. If there are no icon elements on the page, this member may be omitted.
{"type": "array", "minItems": 1, "items": {}}
band-manifest.json
textBindings
An array of objects corresponding to each page element that contains string content. Each binding object provides the numeric id of the page element based on the predefined layout selected, and the string value that it should contain.
{"type": "array", "minItems": 1, "items": {}}
band-manifest.json
conditions
For this release, this must contain an array with a single 'condition' object whose 'condition' is true, and whose 'icon' member specifies the name of the icon to be used.
{"type": "array", "items": {"type": "object", "properties": {"condition": {}, "icon": {"type": "string"}}}}
band-manifest.json
icon
The name of the icon as specified in the 'icons' node.
{"type": "string"}
band-manifest.json
condition
The condition to be evaluated to determine whether to trigger the notification. The conditional expression has the syntax '<Operand1> <Operator> <Operand2>' or 'true'.
{"type": "string"}
band-manifest.json
title
The text to use for the notification title. If longer than 20 characters, it will be truncated.
{"type": "string"}
band-manifest.json
body
The text to use for the notification body. If longer than 20 characters, it will be truncated.
{"type": "string"}
band-manifest.json
manifestVersion
Defines the contract between the web tile developer and the Microsoft Health app. It must be set to 1 for the current release.
{"enum": [1]}
band-manifest.json
name
Defines the name of the web tile.
{"type": "string", "maxLength": 21}
band-manifest.json
description
Provides description about the web tile.
{"type": "string", "maxLength": 100}
band-manifest.json
version
Indicates the version number of the web tile which will not be shown to users.
{"type": "number"}
band-manifest.json
versionString
Indicates the web tile version as shown to users. If not provided, it displays the version.
{"type": "string", "maxLength": 10}
band-manifest.json
author
Specifies the author of the web tile.
{"type": "string", "maxLength": 50}
band-manifest.json
organization
Specifies the organization associated with the web tile.
{"type": "string", "maxLength": 100}
band-manifest.json
contactEmail
Provides contact info of the web tile author. Used for administrative purposes and analytics by Microsoft Band team.
{"type": "string", "format": "email", "maxLength": 100}
band-manifest.json
tileIcon
Specifies the location of the large tile icon.
{"type": "object", "required": ["46"], "properties": {"46": {}}}
band-manifest.json
badgeIcon
Specifies the location of the small tile icon. If not provided, the badging functionality is not enabled.
{"type": "object", "required": ["24"], "properties": {"24": {}}}
band-manifest.json
tileTheme
Specifies the custom theme colors for the web tile.
{"type": "object", "properties": {"base": {}, "highlight": {}, "lowlight": {}, "secondary": {}, "highcontrast": {}, "muted": {}}}
band-manifest.json
refreshIntervalMinutes
Specifies the desired data refresh interval, in minutes. Refresh intervals shorter than 15 will not be honored. If not provided, it defaults to 30.
{"type": "integer", "default": 30, "minimum": 15}
band-manifest.json
resources
Each web tile must refer to one or more web resources. Each resource object describes a web data from which content for the tile will be extracted.
{"type": "array", "items": {}}
band-manifest.json
icons
All PNG icons used by the tile within its pages must be provided here.
{"type": "object", "maxProperties": 8, "additionalProperties": {}}
band-manifest.json
pages
Each tile consists of one or more pages, as described by the objects in this array. Each page object specifies the layout and content of the page.
{"type": "array", "items": {}}
band-manifest.json
notifications
Creates notification that gets delivered when certain conditions are detected in the new web data.
{"type": "array", "items": {}}
openweather.roadrisk.json
API responses from the OpenWeather Road Risk API from https://openweathermap.org/api/road-risk
{"$schema": "https://json-schema.org/draft/2019-09/schema", "items": {"type": "object", "additionalProperties": false, "required": ["dt", "coord", "weather", "alerts"], "properties": {"dt": {"type": "integer"}, "coord": {"type": "array", "items": {"type": "number"}}, "weather": {"type": "object", "additionalProperties": false, "properties": {"temp": {"type": "number"}, "wind_speed": {"type": "number"}, "wind_deg": {"type": "number"}, "precipitation_intensity": {"type": "number"}, "dew_point": {"type": "number"}}}, "alerts": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["sender_name", "event", "event_level"], "properties": {"sender_name": {"type": "string"}, "event": {"type": "string"}, "event_level": {"type": "integer"}}}}}}, "type": "array"}
chisel-slices.json
A slice definition for Ubuntu Chisel tool. For details, see https://github.com/canonical/chisel/tree/main#slice-definitions.
{"$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": {"package": {"type": "string", "pattern": "^[a-z0-9][a-z0-9+\\-\\.]+$", "examples": ["libgcc-s1", "libunwind-13"]}, "archive": {"type": "string", "examples": ["ubuntu"]}, "slices": {"type": "object", "patternProperties": {"^[_a-zA-Z][a-zA-Z0-9_-]*$": {"type": "object", "additionalProperties": false, "properties": {"essential": {"type": "array", "uniqueItems": true, "items": {"type": "string", "pattern": "^[a-z0-9][a-z0-9+\\-\\._]+$"}, "examples": ["libgcc-s1_libs", "ca-certificates_data"]}, "mutate": {"type": "string", "examples": ["foo = content.read(\"/path/to/temporary/content\")"]}, "contents": {"type": "object", "examples": [{"/lib*/ld*.so.*": {}}, {"/usr/share/nodejs/cjs-module-lexer/**": {}}, {"/path/to/moved/content": {"copy": "/bin/original"}}, {"/path/to/link": {"symlink": "/bin/mybin"}}, {"/path/to/new/dir": {"make": true}}, {"/path/to/file/with/text": {"text": "Some text"}}, {"/path/to/mutable/file/with/default/text": {"text": "FIXME", "mutable": true}}, {"/path/to/temporary/content": {"until": "mutate"}}], "patternProperties": {"^.+$": {"type": ["object", "null"], "additionalProperties": false, "properties": {"make": {"type": "boolean", "default": true}, "mode": {"type": "integer", "examples": ["0o755"]}, "copy": {"type": "string", "examples": ["/path/to/original/file.txt"]}, "text": {"type": "string", "examples": ["FIXME"]}, "symlink": {"type": "string", "examples": ["/path/to/source/file.txt"]}, "mutable": {"type": "boolean", "default": true}, "until": {"type": "string", "examples": ["mutate"], "default": "", "enum": ["", "mutate"]}, "arch": {"type": "array", "uniqueItems": true, "examples": [["amd64", "arm64"]], "items": {"type": "string", "examples": ["amd64", "i386", "armhf", "arm64", "powerpc", "ppc64el", "s390x", "riscv64"]}}}}}}}}}}}, "type": "object"}
chisel-slices.json
package
The name of the package to use for the slice.
{"type": "string", "pattern": "^[a-z0-9][a-z0-9+\\-\\.]+$", "examples": ["libgcc-s1", "libunwind-13"]}
chisel-slices.json
archive
The name of the archive to use for the slice. Archives are defined in the chisel.yaml file.
{"type": "string", "examples": ["ubuntu"]}
chisel-slices.json
slices
Slice definitions for this package.
{"type": "object", "patternProperties": {"^[_a-zA-Z][a-zA-Z0-9_-]*$": {"type": "object", "additionalProperties": false, "properties": {"essential": {"type": "array", "uniqueItems": true, "items": {"type": "string", "pattern": "^[a-z0-9][a-z0-9+\\-\\._]+$"}, "examples": ["libgcc-s1_libs", "ca-certificates_data"]}, "mutate": {"type": "string", "examples": ["foo = content.read(\"/path/to/temporary/content\")"]}, "contents": {"type": "object", "examples": [{"/lib*/ld*.so.*": {}}, {"/usr/share/nodejs/cjs-module-lexer/**": {}}, {"/path/to/moved/content": {"copy": "/bin/original"}}, {"/path/to/link": {"symlink": "/bin/mybin"}}, {"/path/to/new/dir": {"make": true}}, {"/path/to/file/with/text": {"text": "Some text"}}, {"/path/to/mutable/file/with/default/text": {"text": "FIXME", "mutable": true}}, {"/path/to/temporary/content": {"until": "mutate"}}], "patternProperties": {"^.+$": {"type": ["object", "null"], "additionalProperties": false, "properties": {"make": {"type": "boolean", "default": true}, "mode": {"type": "integer", "examples": ["0o755"]}, "copy": {"type": "string", "examples": ["/path/to/original/file.txt"]}, "text": {"type": "string", "examples": ["FIXME"]}, "symlink": {"type": "string", "examples": ["/path/to/source/file.txt"]}, "mutable": {"type": "boolean", "default": true}, "until": {"type": "string", "examples": ["mutate"], "default": "", "enum": ["", "mutate"]}, "arch": {"type": "array", "uniqueItems": true, "examples": [["amd64", "arm64"]], "items": {"type": "string", "examples": ["amd64", "i386", "armhf", "arm64", "powerpc", "ppc64el", "s390x", "riscv64"]}}}}}}}}}}
chisel-slices.json
^[_a-zA-Z][a-zA-Z0-9_-]*$
The name of the slice part.
{"type": "object", "additionalProperties": false, "properties": {"essential": {"type": "array", "uniqueItems": true, "items": {"type": "string", "pattern": "^[a-z0-9][a-z0-9+\\-\\._]+$"}, "examples": ["libgcc-s1_libs", "ca-certificates_data"]}, "mutate": {"type": "string", "examples": ["foo = content.read(\"/path/to/temporary/content\")"]}, "contents": {"type": "object", "examples": [{"/lib*/ld*.so.*": {}}, {"/usr/share/nodejs/cjs-module-lexer/**": {}}, {"/path/to/moved/content": {"copy": "/bin/original"}}, {"/path/to/link": {"symlink": "/bin/mybin"}}, {"/path/to/new/dir": {"make": true}}, {"/path/to/file/with/text": {"text": "Some text"}}, {"/path/to/mutable/file/with/default/text": {"text": "FIXME", "mutable": true}}, {"/path/to/temporary/content": {"until": "mutate"}}], "patternProperties": {"^.+$": {"type": ["object", "null"], "additionalProperties": false, "properties": {"make": {"type": "boolean", "default": true}, "mode": {"type": "integer", "examples": ["0o755"]}, "copy": {"type": "string", "examples": ["/path/to/original/file.txt"]}, "text": {"type": "string", "examples": ["FIXME"]}, "symlink": {"type": "string", "examples": ["/path/to/source/file.txt"]}, "mutable": {"type": "boolean", "default": true}, "until": {"type": "string", "examples": ["mutate"], "default": "", "enum": ["", "mutate"]}, "arch": {"type": "array", "uniqueItems": true, "examples": [["amd64", "arm64"]], "items": {"type": "string", "examples": ["amd64", "i386", "armhf", "arm64", "powerpc", "ppc64el", "s390x", "riscv64"]}}}}}}}}
chisel-slices.json
essential
The name of the dependency slice part. The slice part is formatted as '<slice_name>_<slice_part>'.
{"type": "array", "uniqueItems": true, "items": {"type": "string", "pattern": "^[a-z0-9][a-z0-9+\\-\\._]+$"}, "examples": ["libgcc-s1_libs", "ca-certificates_data"]}