AARCHMRS Schema 2.7.4

↚ Home

Accessors.Getter object

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

object

Properties Type Description
_meta Meta

Metadata

See Meta for more information.
_type
Enum
Accessors.Getter
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 Getter model, which is used to describe any side effects that occur on a read access to an instance defined in the `name` property."
  ],
  "type": "object",
  "properties": {
    "_meta": {
      "$ref": "../Meta.json",
      "info": [
        "Metadata"
      ]
    },
    "_type": {
      "enum": [
        "Accessors.Getter"
      ]
    },
    "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": "Getter"
}