We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CURRENTLY the MDF_0 format :
my_node: { functions: { my_function_expression: { value: “expression” } my_function_ontology: { function: ontology_function_name args: {arg1: value, arg2: value} } }
CLOSEST TO CURRENT STANDARD:
my_node: { functions: { my_function_expression: { value: “expression” } my_function_ontology: { value: {ontology_function_name : {arg1: value, arg2: value…} } }
CLEANER BUT NOT AS “STANDARD”:
my_node: { functions: { my_function_expression: “expression” my_function_ontology: {ontology_function_name : {arg1: value, arg2: value…} }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CURRENTLY the MDF_0 format :
my_node: {
functions: {
my_function_expression: {
value: “expression”
}
my_function_ontology: {
function: ontology_function_name
args: {arg1: value, arg2: value}
}
}
CLOSEST TO CURRENT STANDARD:
my_node: {
functions: {
my_function_expression: {
value: “expression”
}
my_function_ontology: {
value: {ontology_function_name : {arg1: value, arg2: value…}
}
}
CLEANER BUT NOT AS “STANDARD”:
my_node: {
functions: {
my_function_expression: “expression”
my_function_ontology: {ontology_function_name : {arg1: value, arg2: value…}
}
The text was updated successfully, but these errors were encountered: