AARCHMRS Schema 2.7.4

↚ Home

Accessors.Setter object

Defines the Setter model, which is used to describe any side effects that occur on a write access to an instance defined in the name property.

object

Properties Type Description
_meta Meta

Metadata

See Meta for more information.
_type
Enum
Accessors.Setter
access CodeAbstract
See definitions.access in CodeAbstract for more information.
condition CodeAbstract
See definitions.condition in CodeAbstract for more information.
name CodeAbstract
See definitions.name in CodeAbstract for more information.
Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.

Schema http://json-schema.org/draft-04/schema#

{
  "additionalProperties": false,
  "info": [
    "Defines the Setter model, which is used to describe any side effects that occur on a write access to an instance defined in the `name` property."
  ],
  "type": "object",
  "properties": {
    "_meta": {
      "$ref": "../Meta.json",
      "info": [
        "Metadata"
      ]
    },
    "_type": {
      "enum": [
        "Accessors.Setter"
      ]
    },
    "access": {
      "$ref": "CodeAbstract.json#/definitions/access"
    },
    "condition": {
      "$ref": "CodeAbstract.json#/definitions/condition"
    },
    "name": {
      "$ref": "CodeAbstract.json#/definitions/name"
    }
  },
  "required": [
    "access",
    "name"
  ],
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Setter"
}