A Knowledge Graph is a graph-based data model representation of knowledge within a domain. In other words, it contains nodes and edges that represent entities and the relationships between them. The API should then enable the creation, update, or query with regard to these graphs and their models.
Knowledge Graph API (1)
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/
https://api.corporate-data-league.ch/knowledge-graph-api/
- Mock server
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values
- Production SOAP
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values
- Production
https://api.corporate-data-league.ch/knowledge-graph-api/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values
curl -i -X GET \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/values \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'OK
List of values.
The Concept is a part of the CDQ data model. For example, Address is a concept of the Business Partner and have many subconcepts as Locality, Thoroughfare, Administrative Area etc.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of the last modification.
The Concept is a part of the CDQ data model. For example, Address is a concept of the Business Partner and have many subconcepts as Locality, Thoroughfare, Administrative Area etc.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of the last modification.
Represents value of:
- an RDF object property (value refers to another concept by its URL)
- an RDF data property/literal value
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Indicates if the concept is unmodifiable. If true, the concept is unmodifiable.
URL of the literal's datatype.
{ "pageSize": "100", "page": "1", "values": [ { … } ] }
To be used when creating/editing of a new concept (or its associated values). It is expected in most cases only either of the properties will be set.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
To be used when creating/editing of a new concept (or its associated values). It is expected in most cases only either of the properties will be set.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Represents value of:
- an RDF object property (value refers to another concept by its URL)
- an RDF data property/literal value
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Indicates if the concept is unmodifiable. If true, the concept is unmodifiable.
URL of the literal's datatype.
- Mock server
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values
- Production SOAP
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values
- Production
https://api.corporate-data-league.ch/knowledge-graph-api/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values
curl -i -X POST \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/values \
-H 'Content-Type: application/json' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3' \
-d '{
"subjectConcept": {
"id": "1",
"url": "https://meta.cdq.com/Business_partner",
"creator": "johndoe",
"creationDate": "2020-08-31T16:47+00:00",
"deletionDate": "2020-08-31T16:47+00:00",
"unmodifiable": true
},
"propertyConcept": {
"id": "1",
"url": "https://meta.cdq.com/Business_partner",
"creator": "johndoe",
"creationDate": "2020-08-31T16:47+00:00",
"deletionDate": "2020-08-31T16:47+00:00",
"unmodifiable": true
},
"value": {
"id": "1",
"url": "https://meta.cdq.com/Business_partner",
"creator": "johndoe",
"creationDate": "2020-08-31T16:47+00:00",
"deletionDate": "2020-08-31T16:47+00:00",
"unmodifiable": true,
"literal": "Berlin",
"datatypeUrl": "http://www.w3.org/2001/XMLSchema#string",
"lang": "en"
}
}'Created
The Concept is a part of the CDQ data model. For example, Address is a concept of the Business Partner and have many subconcepts as Locality, Thoroughfare, Administrative Area etc.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of the last modification.
The Concept is a part of the CDQ data model. For example, Address is a concept of the Business Partner and have many subconcepts as Locality, Thoroughfare, Administrative Area etc.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of the last modification.
Represents value of:
- an RDF object property (value refers to another concept by its URL)
- an RDF data property/literal value
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Indicates if the concept is unmodifiable. If true, the concept is unmodifiable.
URL of the literal's datatype.
{ "id": "1", "subjectConcept": { "id": "1", "url": "https://meta.cdq.com/Business_partner", "lastModifier": "user", "lastModificationDate": "2020-07-06T12:14:03.204Z", "publicationStatus": "PUBLISHED" }, "propertyConcept": { "id": "1", "url": "https://meta.cdq.com/Business_partner", "lastModifier": "user", "lastModificationDate": "2020-07-06T12:14:03.204Z", "publicationStatus": "PUBLISHED" }, "object": { "id": "1", "url": "https://meta.cdq.com/Business_partner", "creator": "johndoe", "creationDate": "2020-08-31T16:47+00:00", "deletionDate": "2020-08-31T16:47+00:00", "unmodifiable": true, "literal": "Berlin", "datatypeUrl": "http://www.w3.org/2001/XMLSchema#string", "lang": "en" } }
To be used when creating/editing of a new concept (or its associated values). It is expected in most cases only either of the properties will be set.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
To be used when creating/editing of a new concept (or its associated values). It is expected in most cases only either of the properties will be set.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Represents value of:
- an RDF object property (value refers to another concept by its URL)
- an RDF data property/literal value
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Indicates if the concept is unmodifiable. If true, the concept is unmodifiable.
URL of the literal's datatype.
- Mock server
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values/{valueId}
- Production SOAP
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values/{valueId}
- Production
https://api.corporate-data-league.ch/knowledge-graph-api/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values/{valueId}
curl -i -X PUT \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/values/1 \
-H 'Content-Type: application/json' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3' \
-d '{
"subjectConcept": {
"id": "1",
"url": "https://meta.cdq.com/Business_partner",
"creator": "johndoe",
"creationDate": "2020-08-31T16:47+00:00",
"deletionDate": "2020-08-31T16:47+00:00",
"unmodifiable": true
},
"propertyConcept": {
"id": "1",
"url": "https://meta.cdq.com/Business_partner",
"creator": "johndoe",
"creationDate": "2020-08-31T16:47+00:00",
"deletionDate": "2020-08-31T16:47+00:00",
"unmodifiable": true
},
"value": {
"id": "1",
"url": "https://meta.cdq.com/Business_partner",
"creator": "johndoe",
"creationDate": "2020-08-31T16:47+00:00",
"deletionDate": "2020-08-31T16:47+00:00",
"unmodifiable": true,
"literal": "Berlin",
"datatypeUrl": "http://www.w3.org/2001/XMLSchema#string",
"lang": "en"
}
}'Value updated successfully
The Concept is a part of the CDQ data model. For example, Address is a concept of the Business Partner and have many subconcepts as Locality, Thoroughfare, Administrative Area etc.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of the last modification.
The Concept is a part of the CDQ data model. For example, Address is a concept of the Business Partner and have many subconcepts as Locality, Thoroughfare, Administrative Area etc.
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of the last modification.
Represents value of:
- an RDF object property (value refers to another concept by its URL)
- an RDF data property/literal value
URL to the documentation which summarizes all details of the Business Partner Concepts.
Date of creation (ISO 8601-compliant).
Date of deletion (ISO 8601-compliant).
Indicates if the concept is unmodifiable. If true, the concept is unmodifiable.
URL of the literal's datatype.
{ "id": "1", "subjectConcept": { "id": "1", "url": "https://meta.cdq.com/Business_partner", "lastModifier": "user", "lastModificationDate": "2020-07-06T12:14:03.204Z", "publicationStatus": "PUBLISHED" }, "propertyConcept": { "id": "1", "url": "https://meta.cdq.com/Business_partner", "lastModifier": "user", "lastModificationDate": "2020-07-06T12:14:03.204Z", "publicationStatus": "PUBLISHED" }, "object": { "id": "1", "url": "https://meta.cdq.com/Business_partner", "creator": "johndoe", "creationDate": "2020-08-31T16:47+00:00", "deletionDate": "2020-08-31T16:47+00:00", "unmodifiable": true, "literal": "Berlin", "datatypeUrl": "http://www.w3.org/2001/XMLSchema#string", "lang": "en" } }
- Mock server
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values/{valueId}
- Production SOAP
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values/{valueId}
- Production
https://api.corporate-data-league.ch/knowledge-graph-api/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/values/{valueId}
curl -i -X DELETE \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/values/1 \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'