@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
80 lines (79 loc) • 2.23 kB
JSON
{
"title": "Function",
"@id": "stencila:Function",
"extends": "Entity",
"role": "secondary",
"status": "experimental",
"category": "code",
"description": "A function with a name, which might take Parameters and return a value of a certain type.",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"Function"
],
"default": "Function",
"from": "Entity"
},
"id": {
"@id": "schema:id",
"description": "The identifier for this item.",
"type": "string",
"from": "Entity"
},
"meta": {
"@id": "stencila:meta",
"description": "Metadata associated with this item.",
"type": "object",
"from": "Entity"
},
"name": {
"@id": "schema:name",
"description": "The name of the function.",
"type": "string",
"pattern": "[a-z_][A-z0-9_]*",
"$comment": "The name property is not required; this allows for anonymous functions\n(although these are not yet implemented in Stencila interpreters).\nThe regex allows for snake_case and camelCase names but excludes\nPascalCase for parameter names.\n",
"from": "Function"
},
"parameters": {
"@id": "stencila:parameters",
"description": "The parameters of the function.",
"type": "array",
"items": {
"$ref": "Parameter.schema.json"
},
"from": "Function",
"isArray": true,
"isPlural": true,
"aliases": [
"parameter"
]
},
"returns": {
"@id": "stencila:returns",
"description": "The return type of the function.",
"allOf": [
{
"$ref": "ValidatorTypes.schema.json"
}
],
"from": "Function"
}
},
"file": "Function.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/Function.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/Function.schema.yaml",
"type": "object",
"propertyAliases": {
"parameter": "parameters"
},
"additionalProperties": false,
"required": [
"type"
]
}