Skip to content

Commit

Permalink
Add yaml schema property optional and default information
Browse files Browse the repository at this point in the history
  • Loading branch information
Balibaloo committed May 14, 2024
1 parent db4409e commit f3aacf2
Showing 1 changed file with 28 additions and 24 deletions.
52 changes: 28 additions & 24 deletions intentsSchema.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
# Schema of intents frontmatter
## ? means the property is optional
## (someValue) shows the default value if no value is specified

intents_imported_from: "'text'|['text']"
intents_to:
- make_a: "text"
is_disabled: "true/false"
outputs_to_pathname: "text"
outputs_to_templated_pathname: "text"
is_disabled: "?true/false (false)"
outputs_to_pathname: "?text (./new_note_name)"
outputs_to_templated_pathname: "?text (./{{new_note_name}})"
with_variables:
- called: "text"
of_type: "text"
is_required: "true/false"
that_prompts: "text"
described_as: "text"
is_initially: "text"
uses_selection: "true/false"
replaces_selection_with_templated: "text"
hinted_as: "text"
is_disabled: "true/false"
of_type: "?text (text)"
is_required: "?true/false (false)"
that_prompts: "?text"
described_as: "?text"
is_initially: "?text"
uses_selection: "?true/false (false)"
replaces_selection_with_templated: "?text ([[{{new_note_name}}]])"
hinted_as: "?text"
is_disabled: "?true/false (false)"
with_templates:
- called: "text"
is_disabled: "true/false"
is_disabled: "?true/false (false)"
at_path: "text"
outputs_to_pathname: "text"
outputs_to_templated_pathname: "text"
outputs_to_pathname: "?text (./new_note_name)"
outputs_to_templated_pathname: "?text (./{{new_note_name}})"
with_variables:
- called: "text"
of_type: "text"
is_required: "true/false"
that_prompts: "text"
described_as: "text"
is_initially: "text"
uses_selection: "true/false"
replaces_selection_with_templated: "text"
hinted_as: "text"
is_disabled: "true/false"
of_type: "?text (text)"
is_required: "?true/false (false)"
that_prompts: "?text"
described_as: "?text"
is_initially: "?text"
uses_selection: "?true/false (false)"
replaces_selection_with_templated: "?text ([[{{new_note_name}}]])"
hinted_as: "?text"
is_disabled: "?true/false (false)"

0 comments on commit f3aacf2

Please sign in to comment.