| name | data type | description |
|---|---|---|
| _relationshipDefinitions | array of RelationshipDefinition | |
| _schema | map of object | |
| _dataAccessPolicies | array of DataAccessPolicy | |
| _mongoId | ObjectId | |
| _version | Semver | |
| _description | string | |
| _creationInfo | AccountingInfo | |
| _name | string | |
| _handlers | array of HandlerDeclaration | |
| _id | string |
Example
{
"_relationshipDefinitions" : [ {
"_label" : "...",
"_reverseRelationId" : "...",
"_id" : "..."
}, {
"_label" : "...",
"_reverseRelationId" : "...",
"_id" : "..."
} ],
"_schema" : {
"property1" : { },
"property2" : { }
},
"_dataAccessPolicies" : [ {
"_enforcer" : {
"_filter" : "..."
},
"_policy" : {
"_read" : "any",
"_write" : "any"
},
"_roles" : [ "...", "..." ]
}, {
"_enforcer" : {
"_filter" : "..."
},
"_policy" : {
"_read" : "none",
"_write" : "none"
},
"_roles" : [ "...", "..." ]
} ],
"_mongoId" : {
"currentCounter" : 12345,
"timestamp" : 12345,
"generatedMachineIdentifier" : 12345,
"machineIdentifier" : 12345,
"counter" : 12345,
"date" : 12345,
"processIdentifier" : 12345,
"generatedProcessIdentifier" : 12345
},
"_version" : {
"value" : "...",
"major" : 12345,
"originalValue" : "...",
"patch" : 12345,
"stable" : true,
"build" : "...",
"minor" : 12345,
"suffixTokens" : [ "...", "..." ],
"type" : "COCOAPODS"
},
"_description" : "...",
"_creationInfo" : {
"_context" : {
"_id" : "...",
"_name" : "..."
},
"_user" : {
"_username" : "...",
"roles" : [ "...", "..." ]
},
"_instant" : "..."
},
"_name" : "...",
"_handlers" : [ {
"_type" : "...",
"_configuration" : {
"property1" : { },
"property2" : { }
},
"_id" : "..."
}, {
"_type" : "...",
"_configuration" : {
"property1" : { },
"property2" : { }
},
"_id" : "..."
} ],
"_id" : "..."
}