forked from OpenLGPD/Schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholgpdComplexTypes.xsd
26 lines (26 loc) · 977 Bytes
/
olgpdComplexTypes.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Definição dos tipos complexos - Padrão OpenLGPD -->
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:olgpd="http://www.openlgpd.org/padroes/schemas" targetNamespace="http://www.openlgpd.org/padroes/schemas" elementFormDefault="qualified">
<include schemaLocation="olgpdSimpleTypes.xsd"/>
<complexType name="ct_anexoCabecalho">
<sequence>
<element name="cpfTitular" type="string"/>
</sequence>
</complexType>
<complexType name="ct_solicitacaoEsquecimento">
<annotation>
<documentation>Solicitação de esquecimento de dados pelo titular</documentation>
</annotation>
<sequence>
<element name="dadosTitular" type="olgpd:ct_dadosTitular"/>
</sequence>
</complexType>
<complexType name="ct_dadosTitular">
<annotation>
<documentation>Dados do titular</documentation>
</annotation>
<sequence>
<element name="cpf" type="olgpd:st_CPF"/>
</sequence>
</complexType>
</schema>