14 lines
435 B
JSON
14 lines
435 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:HowToTool",
|
|
"title": "HowToTool",
|
|
"description": "A tool used (but not consumed) when performing instructions for how to achieve a result.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "An item used as either a tool or supply when performing the instructions for how to achieve a result.",
|
|
"$ref": "schema:HowToItem"
|
|
}
|
|
]
|
|
}
|