alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

JMeter example source code file (XMLSchema-pass.xsd)

This example JMeter source code file (XMLSchema-pass.xsd) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - JMeter tags/keywords

ingredientstype, ingredienttype, ingredienttype, recipetype, recipetype, stepstype, stepstype, steptype, steptype, utf-8

The JMeter XMLSchema-pass.xsd source code

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<xsd:element name="recipe" type="RecipeType"/>
	<xsd:complexType name="RecipeType">
		 <xsd:sequence>
			<xsd:element name="ingredients" type="IngredientsType"/>
			<xsd:element name="steps" type="StepsType" />
		</xsd:sequence>
		<xsd:attribute name="name" type="xsd:string"/>
		<xsd:attribute name="description" type="xsd:string" />
	</xsd:complexType>
	
	
	<xsd:complexType name="IngredientsType">
		<xsd:sequence>
			<xsd:element name="ingredient" type="IngredientType" maxOccurs="unbounded"/>
		</xsd:sequence>
		
	</xsd:complexType>
	
	
	<xsd:complexType name="StepsType">
		<xsd:sequence>
			<xsd:element name="step" type="StepType" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	
	
	<xsd:complexType name="IngredientType">
		<xsd:attribute name="index" type="xsd:positiveInteger"/>
		<xsd:attribute name="description" type="xsd:string"/>
		<xsd:attribute name="amount" type="xsd:string"/>
	</xsd:complexType>
	
	
	<xsd:complexType name="StepType">
		<xsd:attribute name="index" type="xsd:positiveInteger"/>
		<xsd:attribute name="description" type="xsd:string"/>
	</xsd:complexType>
</xsd:schema>

Other JMeter examples (source code examples)

Here is a short list of links related to this JMeter XMLSchema-pass.xsd source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.