Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 813 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 813 Bytes

Fields

A field is the lowest, most fundamental part of your model. Fields are the mobo equivalent to SMW attributes, but contain additional information like how they are rendered in Forms.

Additional properties

  • "ignore": [Boolean] If true this file will be ignored by mobo.
  • "abstract": [Boolean] If true this file will be used for inheritance but not uploaded to the actual model.
  • "smw_form": [Object] Contains Semantic Forms field options.

Examples

/field/radius.json

{
    "title": "radius",
    "description": "The radius of a shape",

    "type": "number",
    "minimum": 0,

    "smw_form": {
        "input type": "text with autocomplete"
    }
}