Skip to content

Commit

Permalink
Merge pull request #341 from International-Data-Spaces-Association/de…
Browse files Browse the repository at this point in the history
…velop

Minor changes for the v4.0.0
  • Loading branch information
clange authored Aug 11, 2020
2 parents d65c5fc + 24a41b7 commit d3a9a1a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
5 changes: 1 addition & 4 deletions model/content/DataApp.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ ids:DataApp
idsm:validation [
idsm:forProperty ids:appEndpoint;
idsm:relationType idsm:OneToMany ;
idsm:constraint idsm:NotEmpty;
];
idsm:validation [
idsm:forProperty ids:appEndpoint;
idsm:constraint idsm:NotNull;
]
.
ids:appDocumentation
a owl:DatatypeProperty ;
Expand Down
2 changes: 1 addition & 1 deletion model/content/UsageControlObject.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ids:UsageControlObject a owl:Class;
];
idsm:validation [
idsm:forProperty ids:contract;
idsm:constraint idsm:NotNull;
idsm:constraint idsm:NotEmpty;
idsm:relationType idsm:OneToMany;
] ;
idsm:validation [
Expand Down
2 changes: 1 addition & 1 deletion model/contract/Rule.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ids:Rule
idsm:validation [
idsm:forProperty ids:action;
idsm:relationType idsm:OneToMany;
idsm:constraint idsm:NotNull;
idsm:constraint idsm:NotEmpty;
].

ids:Permission rdfs:subClassOf ids:Rule;
Expand Down
4 changes: 2 additions & 2 deletions model/infrastructure/InfrastructureComponent.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ids:InfrastructureComponent rdfs:subClassOf ids:ManagedEntity;
];
idsm:validation [
idsm:forProperty ids:inboundModelVersion;
idsm:constraint idsm:NotNull;
idsm:constraint idsm:NotEmpty;
idsm:relationType idsm:OneToMany;
];
idsm:validation [
Expand Down Expand Up @@ -80,4 +80,4 @@ ids:publicKey a owl:ObjectProperty;
rdfs:label "Public Key"@en;
rdfs:domain ids:InfrastructureComponent;
rdfs:range ids:PublicKey;
rdfs:comment "Public Key that has been created for the Component."@en.
rdfs:comment "Public Key that has been created for the Component."@en.
5 changes: 1 addition & 4 deletions model/security/Token.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,8 @@ ids:JwtPayload a owl:Class ;
idsm:validation [
idsm:forProperty ids:transportCertsSha256;
idsm:relationType idsm:OneToMany;
idsm:constraint idsm:NotEmpty;
];
idsm:validation [
idsm:forProperty ids:transportCertsSha256;
idsm:constraint idsm:NotNull;
]
.

ids:transportCertsSha256 a owl:DatatypeProperty;
Expand Down

0 comments on commit d3a9a1a

Please sign in to comment.