@bentley/drawing-production-experimental-schema 1.0.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"$schema":"https://dev.bentley.com/json_schemas/ec/32/ecschema","name":"DrawingProductionExperimental","version":"01.00.00","alias":"dpex","description":"This schema contains an experimental implementation of concepts associated with Drawing Production.","references":[{"name":"CoreCustomAttributes","version":"01.00.05"},{"name":"BisCustomAttributes","version":"01.00.00"},{"name":"BisCore","version":"01.00.24"}],"customAttributes":[{"className":"CoreCustomAttributes.ProductionStatus","SupportedUse":"NotForProduction"},{"className":"BisCustomAttributes.SchemaLayerInfo","Value":"Application"}],"items":{"ViewAttachmentPlaceHolder":{"schemaItemType":"EntityClass","label":"View Attachment Placeholder","description":"An area on a sheet where a view is to be placed.","baseClass":"BisCore.GraphicalElement2d"}}}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- ==================================================================================
|
|
3
|
+
| * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
| * See LICENSE.md in the project root for license terms and full copyright notice.
|
|
5
|
+
======================================================================================= -->
|
|
6
|
+
<ECSchema schemaName="DrawingProductionExperimental" alias="dpex" version="01.00.00" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2" description="This schema contains an experimental implementation of concepts associated with Drawing Production.">
|
|
7
|
+
<ECSchemaReference name="CoreCustomAttributes" version="01.00.03" alias="CoreCA" />
|
|
8
|
+
<ECSchemaReference name="BisCustomAttributes" version="01.00.00" alias="bisCA"/>
|
|
9
|
+
<ECSchemaReference name="BisCore" version="01.00.16" alias="bis"/>
|
|
10
|
+
|
|
11
|
+
<ECCustomAttributes>
|
|
12
|
+
<ProductionStatus xmlns="CoreCustomAttributes.01.00.03">
|
|
13
|
+
<SupportedUse>NotForProduction</SupportedUse>
|
|
14
|
+
</ProductionStatus>
|
|
15
|
+
<SchemaLayerInfo xmlns="BisCustomAttributes.01.00.00">
|
|
16
|
+
<Value>Application</Value>
|
|
17
|
+
</SchemaLayerInfo>
|
|
18
|
+
</ECCustomAttributes>
|
|
19
|
+
|
|
20
|
+
<ECEntityClass typeName="ViewAttachmentPlaceHolder" displayLabel="View Attachment Placeholder" modifier="None" description="An area on a sheet where a view is to be placed.">
|
|
21
|
+
<BaseClass>bis:GraphicalElement2d</BaseClass>
|
|
22
|
+
</ECEntityClass>
|
|
23
|
+
</ECSchema>
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright © 2017-2025 Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @bentley/drawing-production-experimental-schema
|
|
2
|
+
|
|
3
|
+
Copyright © Bentley Systems, Incorporated. All rights reserved. See [LICENSE.md](./LICENSE.md) for license terms and full copyright notice.
|
|
4
|
+
|
|
5
|
+
[iTwin.js](http://itwinjs.org) is an open source platform for creating, querying, modifying, and displaying Infrastructure Digital Twins.
|
|
6
|
+
|
|
7
|
+
## BIS Schemas
|
|
8
|
+
|
|
9
|
+
The acronym “BIS” stands for “Base Infrastructure Schemas”. BIS is an “open” and extensible family of schemas that is modularized into Domains. Please go to [iTwinjs.org](https://www.itwinjs.org/bis/) for more information.
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bentley/drawing-production-experimental-schema",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"version": "1.0.0-dev.1",
|
|
5
|
+
"homepage": "https://www.itwinjs.org/",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"Bentley",
|
|
8
|
+
"BIS",
|
|
9
|
+
"iModel"
|
|
10
|
+
],
|
|
11
|
+
"description": "DrawingProductionExperimental BIS Domains",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Bentley Systems, Inc.",
|
|
14
|
+
"url": "http://www.bentley.com"
|
|
15
|
+
}
|
|
16
|
+
}
|