Schema schema-for-json.xsd

Size: px
Start display at page:

Download "Schema schema-for-json.xsd"

Transcription

1 Schema schema-for-json.xsd schema location: attributeformdefault: elementformdefault: targetnamespace:..\schema-for-json.xsd qualified Elements Complex types Simple types Attr. groups array arraytype booleantype key-group boolean maptype numbertype map nulltype stringtype null othertype number other string element array type j:arraytype children j:map j:array j:string j:number j:boolean j:null j:other source <xs:element name="array" type="j:arraytype"/>

2 element boolean type j:booleantype source <xs:element name="boolean" type="j:booleantype"/> element map type j:maptype children j:map j:array j:string j:number j:boolean j:null j:other identity constraints Name Refer Selector Field(s) Annotation unique unique-key source <xs:element name="map" type="j:maptype"> <xs:unique name="unique-key"> <xs:selector xpath="*"/>

3 <xs:field </xs:unique> element null type j:nulltype source <xs:element name="null" type="j:nulltype"/> element number type j:numbertype facets Kind minexclusive Value -INF Annotation maxexclusive INF source <xs:element name="number" type="j:numbertype"/> element other

4 type j:othertype children j:base64binary j:datetime j:time j:date j:integer j:decimal source <xs:element name="other" type="j:othertype"/> element string type j:stringtype source <xs:element name="string" type="j:stringtype"/> children j:map j:array j:string j:number j:boolean j:null j:other elements array maptype/array source <xs:complextype name="arraytype"> <xs:choice minoccurs="0" maxoccurs="unbounded"> <xs:element ref="j:map"/> <xs:element ref="j:array"/> <xs:element ref="j:string"/> <xs:element ref="j:number"/> <xs:element ref="j:boolean"/> <xs:element ref="j:null"/> <xs:element ref="j:other"/> </xs:choice>

5 complextype maptype children j:map j:array j:string j:number j:boolean j:null j:other elements maptype/map map source <xs:complextype name="maptype"> <xs:choice minoccurs="0" maxoccurs="unbounded"> <xs:element name="map"> <xs:complexcontent> <xs:extension base="j:maptype"> </xs:complexcontent> <xs:unique name="unique-key-2"> <xs:selector xpath="*"/> <xs:field </xs:unique> <xs:element name="array"> <xs:complexcontent> <xs:extension base="j:arraytype"> </xs:complexcontent> <xs:element name="string"> <xs:simplecontent> <xs:extension base="j:stringtype"> </xs:simplecontent>

6 <xs:element name="number"> <xs:simplecontent> <xs:extension base="j:numbertype"> </xs:simplecontent> <xs:element name="boolean"> <xs:simplecontent> <xs:extension base="j:booleantype"> </xs:simplecontent> <xs:element name="null"> <xs:complexcontent> <xs:extension base="j:nulltype"> </xs:complexcontent> <xs:element name="other"> <xs:complexcontent> <xs:extension base="j:othertype"> </xs:complexcontent> </xs:choice>

7 element maptype/map type extension of j:maptype children j:map j:array j:string j:number j:boolean j:null j:other attributes Name Type Use Default Fixed Annotation key xs:string identity constraints Name Refer Selector Field(s) Annotation unique unique-key-2 source <xs:element name="map"> <xs:complexcontent> <xs:extension base="j:maptype"> </xs:complexcontent>

8 <xs:unique name="unique-key-2"> <xs:selector xpath="*"/> <xs:field </xs:unique> element maptype/array type extension of j:arraytype children j:map j:array j:string j:number j:boolean j:null j:other attributes Name Type Use Default Fixed Annotation key xs:string source <xs:element name="array"> <xs:complexcontent> <xs:extension base="j:arraytype"> </xs:complexcontent>

9 element maptype/string type extension of j:stringtype attributes Name Type Use Default Fixed Annotation key xs:string source <xs:element name="string"> <xs:simplecontent> <xs:extension base="j:stringtype"> </xs:simplecontent> element maptype/number type extension of j:numbertype facets Kind minexclusive Value -INF Annotation maxexclusive INF attributes Name Type Use Default Fixed Annotation key xs:string source <xs:element name="number"> <xs:simplecontent> <xs:extension base="j:numbertype">

10 </xs:simplecontent> element maptype/boolean type extension of j:booleantype attributes Name Type Use Default Fixed Annotation key xs:string source <xs:element name="boolean"> <xs:simplecontent> <xs:extension base="j:booleantype"> </xs:simplecontent> element maptype/null type extension of j:nulltype attributes Name Type Use Default Fixed Annotation key xs:string source <xs:element name="null"> <xs:complexcontent> <xs:extension base="j:nulltype">

11 </xs:complexcontent> element maptype/other type extension of j:othertype children j:base64binary j:datetime j:time j:date j:integer j:decimal attributes Name Type Use Default Fixed Annotation key xs:string source <xs:element name="other"> <xs:complexcontent> <xs:extension base="j:othertype"> </xs:complexcontent>

12 complextype nulltype elements maptype/null null source <xs:complextype name="nulltype"/> complextype othertype children j:base64binary j:datetime j:time j:date j:integer j:decimal elements maptype/other other source <xs:complextype name="othertype"> <xs:choice> <!-- useful types beyond JSON such as binary, date-times, decimal and integer --> <xs:element name="base64binary"> <xs:restriction base="xs:base64binary"/> <xs:element name="datetime"> <xs:restriction base="xs:datetime"/> <xs:element name="time"> <xs:restriction base="xs:time"/> <xs:element name="date"> <xs:restriction base="xs:date"/> <xs:element name="integer"> <xs:restriction base="xs:integer"/>

13 <xs:element name="decimal"> <xs:restriction base="xs:decimal"/> </xs:choice> element othertype/base64binary type restriction of xs:base64binary source <xs:element name="base64binary"> <xs:restriction base="xs:base64binary"/> element othertype/datetime type restriction of xs:datetime source <xs:element name="datetime"> <xs:restriction base="xs:datetime"/> element othertype/time type restriction of xs:time source <xs:element name="time">

14 <xs:restriction base="xs:time"/> element othertype/date type restriction of xs:date source <xs:element name="date"> <xs:restriction base="xs:date"/> element othertype/integer type restriction of xs:integer source <xs:element name="integer"> <xs:restriction base="xs:integer"/> element othertype/decimal type restriction of xs:decimal source <xs:element name="decimal"> <xs:restriction base="xs:decimal"/>

15 simpletype booleantype type xs:boolean base xs:boolean elements boolean maptype/boolean source <xs:simpletype name="booleantype"> <xs:restriction base="xs:boolean"/> simpletype numbertype type restriction of xs:double base xs:double elements maptype/number number facets Kind minexclusive Value -INF Annotation maxexclusive INF source <xs:simpletype name="numbertype"> <xs:restriction base="xs:double"> <xs:minexclusive value="-inf"/> <xs:maxexclusive value="inf"/> <!-- exclude positive and negative infinity, and NaN --> <!-- Note: No real effect for EXI Float datatype --> </xs:restriction> simpletype stringtype type xs:string base xs:string elements maptype/string string source <xs:simpletype name="stringtype"> <xs:restriction base="xs:string"/> attributegroup key-group elements maptype/array maptype/boolean maptype/map maptype/null maptype/number maptype/other maptype/string attributes Name Type Use Default Fixed Annotation key xs:string source <xs:attributegroup name="key-group"> <xs:attribute name="key" type="xs:string"/>

16 </xs:attributegroup> attribute type xs:string source <xs:attribute name="key" type="xs:string"/> XML Schema documentation generated by XMLSpy Schema Editor

XML Schema Element and Attribute Reference

XML Schema Element and Attribute Reference E XML Schema Element and Attribute Reference all This appendix provides a full listing of all elements within the XML Schema Structures Recommendation (found at http://www.w3.org/tr/xmlschema-1/). The

More information

Restricting complextypes that have mixed content

Restricting complextypes that have mixed content Restricting complextypes that have mixed content Roger L. Costello October 2012 complextype with mixed content (no attributes) Here is a complextype with mixed content:

More information

So far, we've discussed the use of XML in creating web services. How does this work? What other things can we do with it?

So far, we've discussed the use of XML in creating web services. How does this work? What other things can we do with it? XML Page 1 XML and web services Monday, March 14, 2011 2:50 PM So far, we've discussed the use of XML in creating web services. How does this work? What other things can we do with it? XML Page 2 Where

More information

XML Schema. Mario Alviano A.Y. 2017/2018. University of Calabria, Italy 1 / 28

XML Schema. Mario Alviano A.Y. 2017/2018. University of Calabria, Italy 1 / 28 1 / 28 XML Schema Mario Alviano University of Calabria, Italy A.Y. 2017/2018 Outline 2 / 28 1 Introduction 2 Elements 3 Simple and complex types 4 Attributes 5 Groups and built-in 6 Import of other schemes

More information

Markup Languages. Lecture 4. XML Schema

Markup Languages. Lecture 4. XML Schema Markup Languages Lecture 4. XML Schema Introduction to XML Schema XML Schema is an XML-based alternative to DTD. An XML schema describes the structure of an XML document. The XML Schema language is also

More information

Markets Data API Reference

Markets Data API Reference Document v19, API RST v1.4, SPv2.0 Markets Data API Reference Page 1 Markets Data API Reference API: REST v1.5, SOAP v2.3 Document: v19 Status: For Release Document v19, API RST v1.4, SPv2.0 Markets Data

More information

Introducing our First Schema

Introducing our First Schema 1 di 11 21/05/2006 10.24 Published on XML.com http://www.xml.com/pub/a/2000/11/29/schemas/part1.html See this if you're having trouble printing code examples Using W3C XML By Eric van der Vlist October

More information

PESC Compliant JSON Version /19/2018. A publication of the Technical Advisory Board Postsecondary Electronic Standards Council

PESC Compliant JSON Version /19/2018. A publication of the Technical Advisory Board Postsecondary Electronic Standards Council Version 0.5.0 10/19/2018 A publication of the Technical Advisory Board Postsecondary Electronic Standards Council 2018. All Rights Reserved. This document may be copied and furnished to others, and derivative

More information

Chapter 11 XML Data Modeling. Recent Development for Data Models 2016 Stefan Deßloch

Chapter 11 XML Data Modeling. Recent Development for Data Models 2016 Stefan Deßloch Chapter 11 XML Data Modeling Recent Development for Data Models 2016 Stefan Deßloch Motivation Traditional data models (e.g., relational data model) primarily support structure data separate DB schema

More information

Using and defining new simple types. Basic structuring of definitions. Copyright , Sosnoski Software Solutions, Inc. All rights reserved.

Using and defining new simple types. Basic structuring of definitions. Copyright , Sosnoski Software Solutions, Inc. All rights reserved. IRIS Web Services Workshop II Session 1 Wednesday AM, September 21 Dennis M. Sosnoski What is XML? Extensible Markup Language XML is metalanguage for markup Enables markup languages for particular domains

More information

PESC Compliant JSON Version /04/2019

PESC Compliant JSON Version /04/2019 Version 1.0.0 02/04/2019 A publication of the Technical Advisory Board, 2018. This document is released and all use of it is controlled under Creative Commons, specifically under an Attribution- ShareAlike

More information

Semantic Web. XML and XML Schema. Morteza Amini. Sharif University of Technology Fall 94-95

Semantic Web. XML and XML Schema. Morteza Amini. Sharif University of Technology Fall 94-95 ه عا ی Semantic Web XML and XML Schema Morteza Amini Sharif University of Technology Fall 94-95 Outline Markup Languages XML Building Blocks XML Applications Namespaces XML Schema 2 Outline Markup Languages

More information

Messages are securely encrypted using HTTPS. HTTPS is the most commonly used secure method of exchanging data among web browsers.

Messages are securely encrypted using HTTPS. HTTPS is the most commonly used secure method of exchanging data among web browsers. May 6, 2009 9:39 SIF Specifications SIF Implementation Specification The SIF Implementation Specification is based on the World Wide Web Consortium (W3C) endorsed Extensible Markup Language (XML) which

More information

XML-Schema Quick Start * Draft

XML-Schema Quick Start * Draft XML-Schema (quick start) XML-Schema Quick Start * Draft 2011-01 XML-Schema (quick start) XML-Schema is a World Wide Web Consortium (W3C) specification for an XML application that is used to validate/constrain

More information

Message structure: Payment limit status (colr.mrl ) Description: Structure: Message component elements:

Message structure: Payment limit status (colr.mrl ) Description: Structure: Message component elements: Message structure: Payment limit status (colr.mrl.002.01) Description: Message used to set, request the status of, or cancel a payment limit for a clearing member, sent by the payer agent. Message used

More information

Author: Irena Holubová Lecturer: Martin Svoboda

Author: Irena Holubová Lecturer: Martin Svoboda A7B36XML, AD7B36XML XML Technologies Lecture 5 XML Schema 31. 3. 2017 Author: Irena Holubová Lecturer: Martin Svoboda http://www.ksi.mff.cuni.cz/~svoboda/courses/2016-2-a7b36xml/ Lecture Outline XML schema

More information

MWTM NBAPI WSDL and XSD Definitions

MWTM NBAPI WSDL and XSD Definitions APPENDIXA This appendix describes the WSDL and XSD 1 (XML Schema Definition) definitions for MWTM 6.1.4 Northbound API (NBAPI): InventoryAPI.wsdl, page A-1 EventAPI.wsdl, page A-10 ProvisionAPI.wsdl, page

More information

XMLSchema2ShEx: Converting XML validation to RDF validation

XMLSchema2ShEx: Converting XML validation to RDF validation Semantic Web 0 (0) 1 1 IOS Press XMLSchema2ShEx: Converting XML validation to RDF validation Herminio Garcia-Gonzalez a, Jose Emilio Labra-Gayo a, a Department of Computer Science, University of Oviedo,

More information

CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA

CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA XUEMIN ZHANG School of Computer and Information Science, Hubei Engineering University, Xiaogan 432000, Hubei, China ABSTRACT As XML has become the standard

More information

Big Data 9. Data Models

Big Data 9. Data Models Ghislain Fourny Big Data 9. Data Models pinkyone / 123RF Stock Photo 1 Syntax vs. Data Models Physical view Syntax this is text. 2 Syntax vs. Data Models a Logical view

More information

Schema XACML v0.11c.xsd

Schema XACML v0.11c.xsd Schema XACML v0.11c.xsd schema location: targetnamespace: C:\temp\XACML v0.11c.xsd Elements Complex s Simple s and ActionsType EffectType attributefunction AndType divide equal greaterorequal lessorequal

More information

Message structure: Payment limit status (colr.mrs ) Description: Structure: Message component elements:

Message structure: Payment limit status (colr.mrs ) Description: Structure: Message component elements: Message structure: Payment limit status (colr.mrs.002.01) Description: Message used as notification that a payment limit has been set or cancelled or notification of the degree of utilisation of a limit.

More information

!" DTDs rely on a mechanism based on the use of. !" It is intended to specify cross references" !" Reference to a figure, chapter, section, etc.!

! DTDs rely on a mechanism based on the use of. ! It is intended to specify cross references ! Reference to a figure, chapter, section, etc.! MULTIMEDIA DOCUMENTS! XML Schema (Part 2)"!" DTDs rely on a mechanism based on the use of attributes (ID et IDREF) to specify links into documents"!" It is intended to specify cross references"!" Reference

More information

XEP-0009: Jabber-RPC

XEP-0009: Jabber-RPC XEP-0009: Jabber-RPC DJ Adams mailto:dj.adams@pobox.com xmpp:dj@gnu.mine.nu 2011-11-10 Version 2.2 Status Type Short Name Final Standards Track jabber-rpc This specification defines an XMPP protocol extension

More information

2006 Martin v. Löwis. Data-centric XML. XML Schema (Part 1)

2006 Martin v. Löwis. Data-centric XML. XML Schema (Part 1) Data-centric XML XML Schema (Part 1) Schema and DTD Disadvantages of DTD: separate, non-xml syntax very limited constraints on data types (just ID, IDREF, ) no support for sets (i.e. each element type

More information

XML. Document Type Definitions XML Schema. Database Systems and Concepts, CSCI 3030U, UOIT, Course Instructor: Jarek Szlichta

XML. Document Type Definitions XML Schema. Database Systems and Concepts, CSCI 3030U, UOIT, Course Instructor: Jarek Szlichta XML Document Type Definitions XML Schema 1 XML XML stands for extensible Markup Language. XML was designed to describe data. XML has come into common use for the interchange of data over the Internet.

More information

Área d Organització i Sistemes d Informació Centre de Sistemes d Informació Servei de desenvolupament SARA 600 MISSATGES XML

Área d Organització i Sistemes d Informació Centre de Sistemes d Informació Servei de desenvolupament SARA 600 MISSATGES XML Área d Organització i Sistemes d Informació Centre de Sistemes d Informació Servei de desenvolupament SARA 600 MISSATGES XML Data: 23-11-2011 INDICE 1.- Propòsit del document.... 3 2.- Descripció del missatge

More information

Syntax XML Schema XML Techniques for E-Commerce, Budapest 2004

Syntax XML Schema XML Techniques for E-Commerce, Budapest 2004 Mag. iur. Dr. techn. Michael Sonntag Syntax XML Schema XML Techniques for E-Commerce, Budapest 2004 E-Mail: sonntag@fim.uni-linz.ac.at http://www.fim.uni-linz.ac.at/staff/sonntag.htm Michael Sonntag 2004

More information

XML Technologies. Doc. RNDr. Irena Holubova, Ph.D. Web pages:

XML Technologies. Doc. RNDr. Irena Holubova, Ph.D. Web pages: XML Technologies Doc. RNDr. Irena Holubova, Ph.D. holubova@ksi.mff.cuni.cz Web pages: http://www.ksi.mff.cuni.cz/~holubova/nprg036/ Outline Introduction to XML format, overview of XML technologies DTD

More information

Advanced Model development

Advanced Model development Advanced Model development Expressions The XPath functions available in Monitor are a subset of the XPath specification. The functions supported are shown in the following lists. Data functions String

More information

Last week we saw how to use the DOM parser to read an XML document. The DOM parser can also be used to create and modify nodes.

Last week we saw how to use the DOM parser to read an XML document. The DOM parser can also be used to create and modify nodes. Distributed Software Development XML Schema Chris Brooks Department of Computer Science University of San Francisco 7-2: Modifying XML programmatically Last week we saw how to use the DOM parser to read

More information

! "# # $ % & ' ( ' )* ) & %*+ *

! # # $ % & ' ( ' )* ) & %*+ * !"# # # $ %&'( ' )*& %*+ %*+ text text text

More information

MWTM 6.1 NBAPI WSDL and XSD Definitions

MWTM 6.1 NBAPI WSDL and XSD Definitions APPENDIXA This appendix describes the WSDL and XSD 1 (XML Schema Definition) definitions for MWTM 6.1 Northbound API (NBAPI): InventoryAPI.wsdl, page A-1 EventAPI.wsdl, page A-5 ProvisionAPI.wsdl, page

More information

XES. Standard Definition. Where innovation starts. Den Dolech 2, 5612 AZ Eindhoven P.O. Box 513, 5600 MB Eindhoven The Netherlands

XES. Standard Definition. Where innovation starts. Den Dolech 2, 5612 AZ Eindhoven P.O. Box 513, 5600 MB Eindhoven The Netherlands Den Dolech 2, 5612 AZ Eindhoven P.O. Box 513, 5600 MB Eindhoven The Netherlands www.tue.nl Author Christian W. Günther and Eric Verbeek Date March 28, 2014 Version 2.0 XES Standard Definition Where innovation

More information

Big Data for Engineers Spring Data Models

Big Data for Engineers Spring Data Models Ghislain Fourny Big Data for Engineers Spring 2018 11. Data Models pinkyone / 123RF Stock Photo CSV (Comma separated values) This is syntax ID,Last name,first name,theory, 1,Einstein,Albert,"General, Special

More information

edmr2.0 XML Documentation Last Updated: 5/12/2010

edmr2.0 XML Documentation Last Updated: 5/12/2010 edmr2.0 XML Documentation Last Updated: 5/12/2010 Versions edmr2.0 vs edmr1.0 To differentiate between the old and new edmr versions we have designated the original version as edmr1.0 and the latest version

More information

No. Or < XML Tag > Name Multiplicity Type. KDPW system message. General information. Sender message reference. Function of message

No. Or < XML Tag > Name Multiplicity Type. KDPW system message. General information. Sender message reference. Function of message Message structure: Margin settlement (colr.mrg.001.02) Description: Details of margin settlement. Structure: No. Or < XML Tag > Name Multiplicity 0 KDPWDocument KDPW system message [1..1] KDPWDocument

More information

EVALUATION COPY. Contents

EVALUATION COPY. Contents Contents Chapter 1 - Course Introduction... 7 Course Objectives... 8 Course Overview... 10 Using the Workbook... 11 Suggested References... 12 Chapter 2 - Defining New Types Using Schemas... 15 Substitution

More information

X3D Unit Specification Updates Myeong Won Lee The University of Suwon

X3D Unit Specification Updates Myeong Won Lee The University of Suwon X3D Unit Specification Updates Myeong Won Lee The University of Suwon 1 Units Specification ISO_IEC_19775_1_2008_WD3_Am1_2011_04_14 PDAM in ISO progress UNIT statement Defined in Core component UNIT statements

More information

Technical requirements

Technical requirements ANNEX 1: TECHNICAL REQUIREMENTS Technical requirements 1. Introduction... 2 2. Overview of the import formalities section of the market access database... 2 2.1. Architecture... 2 2.2. The dataset... 2

More information

TED schemas. Governance and latest updates

TED schemas. Governance and latest updates TED schemas Governance and latest updates Enric Staromiejski Torregrosa Carmelo Greco 9 October 2018 Agenda 1. Objectives 2. Scope 3. TED XSD 3.0.0 Technical harmonisation of all TED artefacts Code lists

More information

XPSL: Configuration Objects: Recommendation Document

XPSL: Configuration Objects: Recommendation Document XPSL: Configuration Objects: Recommendation Document PSIG 001/2004 Objective: Define a simulation configuration format and terminology recommendation that can be used to transfer input data among various

More information

XML. Part II DTD (cont.) and XML Schema

XML. Part II DTD (cont.) and XML Schema XML Part II DTD (cont.) and XML Schema Attribute Declarations Declare a list of allowable attributes for each element These lists are called ATTLIST declarations Consists of 3 basic parts The ATTLIST keyword

More information

[MS-OXWSXPROP]: Extended Properties Structure. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXWSXPROP]: Extended Properties Structure. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXWSXPROP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Introduction to XML Schema. The XML Schema language is also referred to as XML Schema Definition (XSD).

Introduction to XML Schema. The XML Schema language is also referred to as XML Schema Definition (XSD). Introduction to XML Schema XML Schema is an XML-based alternative to DTD. An XML schema describes the structure of an XML document. The XML Schema language is also referred to as XML Schema Definition

More information

[MS-OXWSGTZ]: Get Server Time Zone Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXWSGTZ]: Get Server Time Zone Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXWSGTZ]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

IODEF Data Model Status (progress from 03) <draft-ietf-inch-iodef-03>

IODEF Data Model Status (progress from 03) <draft-ietf-inch-iodef-03> IODEF Data Model Status (progress from 03) tracked @ https://rt.psg.com : inch-dm queue Roman Danyliw Wednesday, March 9. 2005 IETF 62, Minneapolis, USA Progress

More information

Configuring a WMS Feature Source

Configuring a WMS Feature Source Configuring a WMS Feature Source Overview This document describes how to specify additional configuration options for a MapGuide WMS feature source (i.e., configuring the GetMap request that is generated

More information

PTC Integrity 10.7 Web Services Reference

PTC Integrity 10.7 Web Services Reference PTC Integrity 10.7 Web Services Reference PTC Integrity 10.7 Web Services Reference Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation

More information

CSC503 Exam 2. Assume that the following functional dependencies beyond that of the primary key are valid:

CSC503 Exam 2. Assume that the following functional dependencies beyond that of the primary key are valid: CSC503 Exam 2 Name: Question 1 Assume that you have the following table: (OrderID, OrderDate, DeliveryDate, CustomerID, CustomerName, CustomerEmail, CustomerCity, CustomerState, CustomerZip, (ProductID,

More information

TCG. TCG Infrastructure Working Group Security Qualities Schema. TCG PUBLISHED Copyright TCG 2007

TCG. TCG Infrastructure Working Group Security Qualities Schema. TCG PUBLISHED Copyright TCG 2007 TCG Infrastructure Working Group Security Qualities Schema Revision 7 21 May 2007 Published Contacts: admin@trustedcomputinggroup.org Copyright TCG 2007 TCG Copyright 2007 Trusted Computing Group, Incorporated.

More information

Big Data Fall Data Models

Big Data Fall Data Models Ghislain Fourny Big Data Fall 2018 11. Data Models pinkyone / 123RF Stock Photo CSV (Comma separated values) This is syntax ID,Last name,first name,theory, 1,Einstein,Albert,"General, Special Relativity"

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSXPROP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

XEP-0298: Delivering Conference Information to Jingle Participants (Coin)

XEP-0298: Delivering Conference Information to Jingle Participants (Coin) XEP-0298: Delivering Conference Information to Jingle Participants (Coin) Emil Ivov mailto:emcho@jitsi.org xmpp:emcho@jit.si Enrico Marocco mailto:enrico.marocco@telecomitalia.it xmpp:enrico@tilab.com

More information

/// Rapport. / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC)

/// Rapport. / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC) /// Rapport / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC) / Maart 2017 www.vlaanderen.be/informatievlaanderen Informatie Vlaanderen /// Aanpassingen aan de webservices Dit

More information

Modelling XML Applications (part 2)

Modelling XML Applications (part 2) Modelling XML Applications (part 2) Patryk Czarnik XML and Applications 2014/2015 Lecture 3 20.10.2014 Common design decisions Natural language Which natural language to use? It would be a nonsense not

More information

REDISPATCH DOCUMENT UML MODEL AND SCHEMA

REDISPATCH DOCUMENT UML MODEL AND SCHEMA 1 REDISPATCH DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 Table of Contents 1

More information

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. M.Sc. in Advanced Computer Science. Date: Tuesday 20 th May 2008.

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. M.Sc. in Advanced Computer Science. Date: Tuesday 20 th May 2008. COMP60370 Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE M.Sc. in Advanced Computer Science Semi-Structured Data and the Web Date: Tuesday 20 th May 2008 Time: 09:45 11:45 Please answer

More information

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017 Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1 September 2017 Copyright 1987, 2017, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Describing Document Types: The Schema Languages of XML Part 2

Describing Document Types: The Schema Languages of XML Part 2 Describing Document Types: The Schema Languages of XML Part 2 John Cowan 1 Copyright Copyright 2005 John Cowan Licensed under the GNU General Public License ABSOLUTELY NO WARRANTIES; USE AT YOUR OWN RISK

More information

Schema U4IS_IM_Customer.xsd

Schema U4IS_IM_Customer.xsd Schema U4IS_IM_Customer.xsd schema location: attributeformdefault: elementformdefault: targetnamespace: http://services.agresso.com/u4is/customer/3/u4is_im_customer.xsd qualified http://services.agresso.com/u4is/customer/3

More information

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification [MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

General Interface Control Document

General Interface Control Document SunGuide TM : General Interface Control Document SunGuide-General-ICD-3.0.1 Prepared for: Florida Department of Transportation Traffic Engineering and Operations Office 605 Suwannee Street, M.S. 90 Tallahassee,

More information

XML extensible Markup Language

XML extensible Markup Language extensible Markup Language Eshcar Hillel Sources: http://www.w3schools.com http://java.sun.com/webservices/jaxp/ learning/tutorial/index.html Tutorial Outline What is? syntax rules Schema Document Object

More information

Software Engineering Methods, XML extensible Markup Language. Tutorial Outline. An Example File: Note.xml XML 1

Software Engineering Methods, XML extensible Markup Language. Tutorial Outline. An Example File: Note.xml XML 1 extensible Markup Language Eshcar Hillel Sources: http://www.w3schools.com http://java.sun.com/webservices/jaxp/ learning/tutorial/index.html Tutorial Outline What is? syntax rules Schema Document Object

More information

Data Bus Client Interface Manager Interface Control Document

Data Bus Client Interface Manager Interface Control Document SunGuide SM : Data Bus Client Interface Manager Interface Control Document SunGuide-DB-CIM-ICD-1.0.0 Prepared for: Florida Department of Transportation Traffic Engineering and Operations Office 605 Suwannee

More information

Mailtips Extensions to Web Service Protocol Specification

Mailtips Extensions to Web Service Protocol Specification [MS-OXWMT]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Who s Afraid of XML Schema?

Who s Afraid of XML Schema? Who s Afraid of XML Schema? Neil Graham IBM Canada Ltd. Page Objectives Review some of the scariest aspects of XML Schema Focus on broad concepts Heavy use of examples Prove that the basics of XML Schema

More information

CP Visualizer Format

CP Visualizer Format CP Visualizer Format February, 00 Helmut Simonis email: h.simonis@c.ucc.ie homepage: http://c.ucc.ie/~hsimonis Cork Constraint Computation Centre Computer Science Department University College Cork Ireland

More information

PRELIMINARY. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

PRELIMINARY. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSTASK]: Tasks Web Service Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSXPROP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Brief guide for XML, XML Schema, XQuery for YAWL data perspective

Brief guide for XML, XML Schema, XQuery for YAWL data perspective Brief guide for XML, XML Schema, XQuery for YAWL data perspective Carmen Bratosin March 16, 2009 1 Data perspective in YAWL YAWL engine files are XML based. Therefore, YAWL uses XML for data perspective

More information

Apache UIMA Regular Expression Annotator Documentation

Apache UIMA Regular Expression Annotator Documentation Apache UIMA Regular Expression Annotator Documentation Written and maintained by the Apache UIMA Development Community Version 2.3.1 Copyright 2006, 2011 The Apache Software Foundation License and Disclaimer.

More information

[MS-OXWSMSHR]: Folder Sharing Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXWSMSHR]: Folder Sharing Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXWSMSHR]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

XEP-0171: Language Translation

XEP-0171: Language Translation XEP-0171: Language Translation Boyd Fletcher mailto:boyd.fletcher@us.army.mil Keith Lirette mailto:keith.lirette@tridsys.com Daniel LaPrade mailto:dlaprade@echostorm.net Brian Raymond mailto:braymond@echostorm.net

More information

General Service Subscription Management Technical Specification

General Service Subscription Management Technical Specification General Service Subscription Management Technical Specification Approved Version 1.0 20 Dec 2011 Open Mobile Alliance OMA-TS-GSSM-V1_0-20111220-A OMA-TS-GSSM-V1_0-20111220-A Page 2 (32) Use of this document

More information

Interface Specification Archive Content Services. Peter Robinson, Solutions Architecture. Judy Sandison, Manager, Solutions Architecture

Interface Specification Archive Content Services. Peter Robinson, Solutions Architecture. Judy Sandison, Manager, Solutions Architecture gspecification REV. 484-0200155 F5 NCR Corporation Image & Payment Systems 50 Northland Road Unit 100 Waterloo, Ontario N2V1 N3 PROGRAM: ImageMark Archive 5.1 TITLE: Interface Specification Archive Content

More information

[MS-SSDL]: Store Schema Definition Language File Format. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SSDL]: Store Schema Definition Language File Format. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSDL]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

TIBCO BusinessWorks COBOL Copybook Plug-in User s Guide. Software Release 2.5 October 2008

TIBCO BusinessWorks COBOL Copybook Plug-in User s Guide. Software Release 2.5 October 2008 TIBCO BusinessWorks COBOL Copybook Plug-in User s Guide Software Release 2.5 October 2008 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

TRANSMISSION NETWORK DOCUMENT UML MODEL AND SCHEMA

TRANSMISSION NETWORK DOCUMENT UML MODEL AND SCHEMA 1 TRANSMISSION NETWORK DOCUMENT UML MODEL AND SCHEMA 2017-01-27 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 Table of

More information

Altova XMLSpy 2014 Tutorial

Altova XMLSpy 2014 Tutorial Tutorial All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage

More information

Intellectual Property Rights Notice for Open Specifications Documentation

Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSISPARAMS-Diff]: Intellectual Property Rights tice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats,

More information

RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA

RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA 1 RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

More information

Fall, 2005 CIS 550. Database and Information Systems Homework 5 Solutions

Fall, 2005 CIS 550. Database and Information Systems Homework 5 Solutions Fall, 2005 CIS 550 Database and Information Systems Homework 5 Solutions November 15, 2005; Due November 22, 2005 at 1:30 pm For this homework, you should test your answers using Galax., the same XQuery

More information

Performing XML Data Validation in the Global Force Management Data Initiative

Performing XML Data Validation in the Global Force Management Data Initiative Performing XML Data Validation in the Global Force Management Data Initiative by Frederick S. Brundick ARL-TR-4742 March 2009 Approved for public release; distribution unlimited. NOTICES Disclaimers The

More information

IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA

IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA 1 IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA 2018-05-08 DOCUMENT APPROVED 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 Table

More information

VDS Service Broker APIs

VDS Service Broker APIs CHAPTER 2 This chapter describes the HTTPS RESTful APIs for VDS-SB and the XML schema. CDN Management API, page 2-1 BFQDN Management API BFQDN Policy API CDN Adaptation Policy API CDN Selection Policy

More information

CSC503 Exam 2. (AnimalID, VisitDate, OwnerID, AnimalName, OwnerName, AnimalDOB, OwnerPhone, Diagnosis, Cost, VetID, VetName)

CSC503 Exam 2. (AnimalID, VisitDate, OwnerID, AnimalName, OwnerName, AnimalDOB, OwnerPhone, Diagnosis, Cost, VetID, VetName) CSC503 Exam 2 Name: Question 1 Assume that you have the following table: (AnimalID, VisitDate, OwnerID, AnimalName, OwnerName, AnimalDOB, OwnerPhone, Diagnosis, Cost, VetID, VetName) Assume that the following

More information

Altova XMLSpy Tutorial

Altova XMLSpy Tutorial Altova XMLSpy 2018 Tutorial All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or

More information

[MS-OXOUM]: Voice Mail and Fax Objects Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXOUM]: Voice Mail and Fax Objects Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXOUM]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

WA2217 Programming Java EE 6 SOAP Web Services with JAX-WS - JBoss / Eclipse EVALUATION ONLY

WA2217 Programming Java EE 6 SOAP Web Services with JAX-WS - JBoss / Eclipse EVALUATION ONLY WA2217 Programming Java EE 6 SOAP Web Services with JAX-WS - JBoss / Eclipse Web Age Solutions Inc. USA: 1-877-517-6540 Canada: 1-866-206-4644 Web: http://www.webagesolutions.com The following terms are

More information

HVDC LINK DOCUMENT UML MODEL AND SCHEMA

HVDC LINK DOCUMENT UML MODEL AND SCHEMA 1 HVDC LINK DOCUMENT UML MODEL AND SCHEMA 2017-01-19 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 Table of Contents 1 Objective...

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSMSHR]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

AlwaysUp Web Service API Version 11.0

AlwaysUp Web Service API Version 11.0 AlwaysUp Web Service API Version 11.0 0. Version History... 2 1. Overview... 3 2. Operations... 4 2.1. Common Topics... 4 2.1.1. Authentication... 4 2.1.2. Error Handling... 4 2.2. Get Application Status...

More information

OpenTravel Alliance Best Practices

OpenTravel Alliance Best Practices OpenTravel Alliance Best Practices OpenTravel Alliance, Inc. 333 John Carlyle Street, Suite 600 Alexandria, Va. 22314 USA +1 703-548-7005 Fax +1 703-548-1264 opentravel@disa.org http://www.opentravel.org/

More information

Distribution List Creation and Usage Web Service Protocol

Distribution List Creation and Usage Web Service Protocol [MS-OXWSDLIST]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

[MS-SSDL]: Store Schema Definition Language File Format. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SSDL]: Store Schema Definition Language File Format. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSDL]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information