Skip to content

Commit dfda0e0

Browse files
committedMar 3, 2021
Add fdml schema for JdbcAdapter
1 parent 19c2b13 commit dfda0e0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
3+
<xs:redefine schemaLocation="http://latis-data.io/schemas/1.0/fdml.xsd">
4+
<xs:attributeGroup name="adapter_attributes">
5+
<xs:attributeGroup ref="adapter_attributes"/>
6+
<xs:attribute name="driver" type="xs:string" use="required"/>
7+
<xs:attribute name="table" type="xs:string" use="required"/>
8+
<xs:attribute name="user" type="xs:string" use="required"/>
9+
<xs:attribute name="password" type="xs:string" use="required"/>
10+
<xs:attribute name="predicate" type="xs:string"/>
11+
</xs:attributeGroup>
12+
</xs:redefine>
13+
</xs:schema>

0 commit comments

Comments
 (0)
Please sign in to comment.