123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- {
- "types": {
- "GlobalConstraint": [
- {
- "name": "name",
- "type": "string",
- "default": "GC_"
- },
- {
- "name": "event",
- "type": "$EVENT",
- "default": ""
- },
- {
- "name": "code",
- "type": "code",
- "default": ""
- }
- ],
- "GlobalAction": [
- {
- "name": "name",
- "type": "string",
- "default": "GA_"
- },
- {
- "name": "event",
- "type": "$EVENT",
- "default": ""
- },
- {
- "name": "code",
- "type": "code",
- "default": ""
- }
- ],
- "Entity": [
- {
- "name": "name",
- "type": "string",
- "default": "Entity_"
- },
- {
- "name": "attributes",
- "type": "list<$ATTRIBUTE>",
- "default": []
- },
- {
- "name": "constraints",
- "type": "list<$EVENT_HANDLER>",
- "default": []
- },
- {
- "name": "actions",
- "type": "list<$EVENT_HANDLER>",
- "default": []
- },
- {
- "name": "cardinalities",
- "type": "list<$CARDINALITY>",
- "default": []
- }
- ],
- "Relationship": [
- {
- "name": "name",
- "type": "string",
- "default": "Relationship_"
- },
- {
- "name": "attributes",
- "type": "list<$ATTRIBUTE>",
- "default": []
- },
- {
- "name": "constraints",
- "type": "list<$EVENT_HANDLER>",
- "default": []
- },
- {
- "name": "actions",
- "type": "list<$EVENT_HANDLER>",
- "default": []
- },
- {
- "name": "cardinalities",
- "type": "list<$CARDINALITY>",
- "default": []
- },
- {
- "name": "linktype",
- "type": "ENUM(visual,containment)",
- "default": "visual"
- }
- ]
- },
- "constraints": [],
- "actions": [],
- "cardinalities": {
- "GlobalConstraint": [],
- "GlobalAction": [],
- "Entity": [
- {
- "dir": "out",
- "type": "Relationship",
- "min": "0",
- "max": "Infinity"
- },
- {
- "dir": "in",
- "type": "Relationship",
- "min": "0",
- "max": "Infinity"
- }
- ],
- "Relationship": [
- {
- "dir": "in",
- "type": "Entity",
- "min": "0",
- "max": "1"
- },
- {
- "dir": "out",
- "type": "Entity",
- "min": "0",
- "max": "1"
- }
- ]
- },
- "legalConnections": {
- "Entity": {
- "Entity": [
- "Relationship"
- ]
- }
- },
- "connectorTypes": {
- "Relationship": "visual"
- },
- "types2parentTypes": {}
- }
|