Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit c79c6c9

Browse files
author
Haydar Akyürek
authored
Merge pull request #334 from International-Data-Spaces-Association/fix/removingDoublePrefix
Removing some duplicate ids:ids: prefixes
2 parents 56a34e1 + 61cbc1e commit c79c6c9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Version 4.0.0 of the IDS Information Model
4343
* Removed `ids:InteractiveEndpoint`.
4444
* `ids:StaticEndpoint` is now called `ids:ConnectorEndpoint`. `ids:ConnectorEndpoint` contains additional properties, especially for endpoint description and documentation.
4545
* `ids:Host` information is now part of the `ids:Endpoint`.
46-
* New property: `ids:ids:endpointInformation` with range `xsd:string` and `ids:endpointDocumentation` with range `xsd:anyURI` for endpoint description and documentation.
46+
* New property: `ids:endpointInformation` with range `xsd:string` and `ids:endpointDocumentation` with range `xsd:anyURI` for endpoint description and documentation.
4747
* Core classes for digital content (`ids:Resource`, `ids:DigitalContent`, `ids:Representation`, `ids:Artifact`) now aligned with W3C [DCAT 2](https://www.w3.org/TR/vocab-dcat-2/)
4848

4949
### Removed

examples/contracts-and-usage-policy/templates/ConstraintTemplates/CONSTRAINT_TEMPLATE.jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"ids:leftOperand": { "@id": "?IdscLeftOperand" },
2424
"ids:operator": { "@id": "?IdsBinaryOperator" },
2525
"ids:rightOperand": { "@id": "?Value" }
26-
(, "ids:ids:pipEndpoint": { "@id": "?AttributeLocation" } )?
26+
(, "ids:pipEndpoint": { "@id": "?AttributeLocation" } )?
2727
(, "ids:unit": { "@id": "?Unit" } )?
2828
}
2929
){2,} // at least two constraints

examples/contracts-and-usage-policy/templates/TargetTemplates/ASSET_TEMPLATE.jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"ids:leftOperand": { "@id": "?IdscLeftOperand" },
3939
"ids:operator": { "@id": "?IdsBinaryOperator" },
4040
"ids:rightOperand": { "@id": "?Value" }
41-
(, "ids:ids:pipEndpoint": { "@id": "?AttributeLocation" } )?
41+
(, "ids:pipEndpoint": { "@id": "?AttributeLocation" } )?
4242
(, "ids:unit": { "@id": "?Unit" } )?
4343
}
4444
){2,} // at least two constraints

model/communication/Endpoint.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ ids:Endpoint a owl:Class ;
1313
rdfs:label "Endpoint"@en ;
1414
rdfs:comment "Access point of data exchange, service interaction and service description."@en ;
1515
idsm:validation [
16-
idsm:forProperty ids:ids:endpointInformation;
16+
idsm:forProperty ids:endpointInformation;
1717
idsm:relationType idsm:OneToMany ;
1818
];
1919
idsm:validation [
20-
idsm:forProperty ids:ids:endpointDocumentation;
20+
idsm:forProperty ids:endpointDocumentation;
2121
idsm:relationType idsm:OneToMany ;
2222
];
2323

0 commit comments

Comments
 (0)