Access is IMPLEMENTATION DEFINED.
This means that the access is not architecturally defined, but must be defined and documented by individual implementations.
| Properties | Type | Description |
|---|---|---|
| _meta | Meta |
See
Meta
for more information.
|
| _type |
|
|
| constraints |
oneOf [
array
null
]
|
An array of architectural constraints an implementation must comply with. When set to null, no constraints apply.
oneOf array
oneOf null
|
|
||
|
||
{
"info": [
"Access is `IMPLEMENTATION DEFINED`.",
"This means that the access is not architecturally defined, but must be defined and documented by individual implementations."
],
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Memory.ImplementationDefined",
"type": "object",
"additionalProperties": false,
"properties": {
"_meta": {
"$ref": "../../../../Meta.json"
},
"_type": {
"enum": [
"Accessors.Permission.AccessTypes.Memory.ImplementationDefined"
]
},
"constraints": {
"info": [
"An array of architectural constraints an implementation must comply with.",
"When set to null, no constraints apply."
],
"oneOf": [
{
"type": "array",
"uniqueItems": true,
"minItems": 2,
"items": {
"$ref": "ReadWriteAccess.json"
}
},
{
"type": "null"
}
]
}
}
}