Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
c7c26e80
Commit
c7c26e80
authored
12 years ago
by
Cyril Vazquez
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
00a1217c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/trunk/core/xml/datatypes.xsd
+0
-200
0 additions, 200 deletions
core/trunk/core/xml/datatypes.xsd
with
0 additions
and
200 deletions
core/trunk/core/xml/datatypes.xsd
deleted
100644 → 0
+
0
−
200
View file @
00a1217c
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
xmlns:xsd=
"http://www.w3.org/2001/XMLSchema"
xmlns:das=
"maarch:DataAccessService"
elementFormDefault=
"qualified"
>
<!-- ==================================================================== -->
<!-- ==== ==== -->
<!-- ==== DATA TYPES ==== -->
<!-- ==== ==== -->
<!-- ==================================================================== -->
<!-- ==================================================================== -->
<!-- ==== CHARACTER DATA TYPES ==== -->
<!-- ==================================================================== -->
<!-- Character varying(10) -->
<xsd:simpleType
name=
"varchar10"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(10)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"10"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(20) -->
<xsd:simpleType
name=
"varchar20"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(20)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"20"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(32) -->
<xsd:simpleType
name=
"varchar32"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(32)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"32"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(50) -->
<xsd:simpleType
name=
"varchar50"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(50)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"50"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(64) -->
<xsd:simpleType
name=
"varchar64"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(64)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"64"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(100) -->
<xsd:simpleType
name=
"varchar100"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(100)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"100"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(128) -->
<xsd:simpleType
name=
"varchar128"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(128)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"128"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character varying(255) -->
<xsd:simpleType
name=
"varchar255"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(255)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"255"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Character text -->
<xsd:simpleType
name=
"text"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
text
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:minLength
value=
"0"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- Boolean -->
<xsd:simpleType
name=
"boolean"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(1)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:enumeration
value=
"Y"
/>
<xsd:enumeration
value=
"N"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- ==================================================================== -->
<!-- ==== NUMERIC DATA TYPES ==== -->
<!-- ==================================================================== -->
<xsd:simpleType
name=
"bigint"
das:enclosed=
'false'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
bigint
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:nonNegativeInteger"
>
<xsd:minInclusive
value=
"0"
/>
<xsd:maxInclusive
value=
"9223372036854775807"
/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType
name=
"integer"
das:enclosed=
'false'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
integer
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:nonNegativeInteger"
>
<xsd:minInclusive
value=
"0"
/>
<xsd:maxInclusive
value=
"2147483648"
/>
</xsd:restriction>
</xsd:simpleType>
<!-- ==================================================================== -->
<!-- ==== DATE AND TIME DATA TYPES ==== -->
<!-- ==================================================================== -->
<!-- Datetime -->
<xsd:simpleType
name=
"datetime"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
timestamp
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:union
memberTypes=
"xsd:date xsd:time xsd:string"
das:baseType=
"xsd:string"
/>
</xsd:simpleType>
<!-- Datetime -->
<xsd:simpleType
name=
"date"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
date
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:union
memberTypes=
"xsd:date"
das:baseType=
"xsd:string"
/>
</xsd:simpleType>
<xsd:simpleType
name=
"fingerprint"
das:enclosed=
'true'
>
<xsd:annotation>
<xsd:appinfo>
<das:sqltype
driver=
'postgresql'
>
character varying(64)
</das:sqltype>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction
base=
"xsd:string"
>
<xsd:maxLength
value=
"64"
/>
<xsd:minLength
value=
"1"
/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment