Skip to content

Commit 177700d

Browse files
committed
Fix authoring tool id
1 parent 6975110 commit 177700d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ BCF is suitable for selecting a few components. A huge list of selected componen
13461346
|---------|----|-----------|--------|
13471347
| ifc_guid | string | IFC guid of the component | optional, if authoring_tool_id is provided |
13481348
| originating_system | string | originating system of the component | optional |
1349-
| authoring_tool_id | string | internal id for the authoring tool of the component | optional, if ifc_guid is provided |
1349+
| authoring_tool_id | string | system specific identifier of the component in the originating BIM tool | optional, if ifc_guid is provided |
13501350

13511351
Note that `ifc_guid` must be provided, if possible. The `authoring_tool_id` can be used as a fallback when an `ifc_guid` is not available.
13521352

@@ -1506,8 +1506,8 @@ Viewpoints are immutable, while topics may be changed later. To ensure that view
15061506
"components": {
15071507
"selection": [{
15081508
"ifc_guid": "2MF28NhmDBiRVyFakgdbCT",
1509-
"originating_system": "Example CAD Application",
1510-
"authoring_tool_id": "EXCAD/v1.0"
1509+
"originating_system": "ExampleCAD/v1.0",
1510+
"authoring_tool_id": "example:entity:12345"
15111511
}],
15121512
"coloring": [{
15131513
"color": "ff0000",
@@ -1789,8 +1789,8 @@ Retrieve a **collection** of all selected components in a viewpoint.
17891789
"selection": [
17901790
{
17911791
"ifc_guid": "2MF28NhmDBiRVyFakgdbCT",
1792-
"originating_system": "Example CAD Application",
1793-
"authoring_tool_id": "EXCAD/v1.0"
1792+
"originating_system": "ExampleCAD/v1.0",
1793+
"authoring_tool_id": "example:entity:12345"
17941794
}, {
17951795
"ifc_guid": "3$cshxZO9AJBebsni$z9Yk"
17961796
}
@@ -1822,8 +1822,8 @@ Retrieve a **collection** of all colored components in a viewpoint.
18221822
"components": [
18231823
{
18241824
"ifc_guid": "2MF28NhmDBiRVyFakgdbCT",
1825-
"originating_system": "Example CAD Application",
1826-
"authoring_tool_id": "EXCAD/v1.0"
1825+
"originating_system": "ExampleCAD/v1.0",
1826+
"authoring_tool_id": "example:entity:12345"
18271827
}, {
18281828
"ifc_guid": "3$cshxZO9AJBebsni$z9Yk"
18291829
}
@@ -1856,8 +1856,8 @@ Retrieve visibility of components in a viewpoint.
18561856
"exceptions": [
18571857
{
18581858
"ifc_guid": "2MF28NhmDBiRVyFakgdbCT",
1859-
"originating_system": "Example CAD Application",
1860-
"authoring_tool_id": "EXCAD/v1.0"
1859+
"originating_system": "ExampleCAD/v1.0",
1860+
"authoring_tool_id": "example:entity:12345"
18611861
}, {
18621862
"ifc_guid": "3$cshxZO9AJBebsni$z9Yk",
18631863
}

0 commit comments

Comments
 (0)