473,761 Members | 7,351 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

IP of XML Schema

If I come up with an XML Schema, do I own the intellectual propertyrights
for that schema? Can I legally restrict others from using that schema?

I'm in the UK if that makes any difference...
Apr 6 '07 #1
3 1947
(Not replying to the MS group because, despite its name, it doesn't
accept public comments via NNTP.)
Michael wrote:
If I come up with an XML Schema, do I own the intellectual propertyrights
for that schema? Can I legally restrict others from using that schema?
Free legal advice is usually not worth what you paid for it, especially
free international legal advice. If you care about this, spend the money
and hire a lawyer with expertise in this area.
My semi-uninformed guess is that you could assert copyright proptection.
Whether that gives you any enforcable rights, which rights if so, and
whether any of your possible users will want to go anywhere near it if
you do so, are all open questions.

I expect that if you try to get stuffy about the use of a schema, the
main result is that everyone will use a competing schema instead...
which may cover exactly the same instance documents. (At least in the
US, copyright only protects a specific instantiation of ideas; ideas
themselves would have to qualify for patent before they'd be protectable.)
--
Joe Kesselman / Beware the fury of a patient man. -- John Dryden
Apr 6 '07 #2
In article <df************ *****@newsfe6-win.ntli.net>,
mi*****@gmailNO SPAM.com says...
If I come up with an XML Schema, do I own the intellectual propertyrights
for that schema? Can I legally restrict others from using that schema?
I am not a lawyer but...

You can copyright the schema itself, which only protects the text of the
schema. Someone could duplicate the functionality of the schema using
different tag names and your copyright would be worthless. Fortunately, a
copyright doesn't cost anything in the first place. In the US, as soon as
you create a document (and a schema is a document) then it is
copyrighted. It helps if you place a copyright notice within it and it
helps even more if you register it with the copyright office but it isn't
absolutely necessary.

You can also patent the design and functionality of the schema. This is a
costly and time consuming process. In the US you must file at least a
provisional patent within a year of publishing information about the
invention, your schema. In the EU you have one day. So you must decide
ahead of time whether you want the thing to be public domain or not. Do
not publish the details of your schema until you have made this decision
and consulted with a lawyer.

There are many on the internet who will tell you that you can't patent a
standard, but then write a document using OpenOffice or Star Office which
creates documents conforming to an XML schema called the "Open Document
Format" (ODF) which is patented by Sun. It is patented, but they have
committed themselves to license it royalty-free to anyone. Sun has
submitted the standard to OASIS and agreed to their patent guidelines, so
now the OASIS standards body can extend the standard but no one else can.
Fortunately, writing complicated open source licensing agreements (such
as GPL or the Apache license) seems to have taken hold in the open source
community and many accept that a simple public license applied to and
included with a standard will suffice. Whether that would hold up in
court has yet to be tested.

So, if you want your schema to be a public standard then you need to make
it as open as possible while still protecting it from fragmentation. But,
if you want to use it in a niche market and not allow anyone else to copy
it then you should patent it probably copyright it too. It is not an
either/or proposition despite the what many seem to think. You copyright
the text of the schema along with the names of all the tags, then you
patent the design and functionality irrespective of the actual text or
names of tags.

I'm in the UK if that makes any difference...
Ask your lawyer.
Apr 6 '07 #3
Michael wrote:
If I come up with an XML Schema, do I own the intellectual property
rights for that schema?
Probably. As with anything else you create, it's yours if it's all your
own original work, unless your employer (or someone else with a
contractual relationship with you) claims prior rights.
Can I legally restrict others from using that schema?
Not physically. You can take them to court after the event, if they
breach your copyright or patent, but you can't prevent the breach
happening in the first place. Copyright and patent protection are
deterrents, not chains.
I'm in the UK if that makes any difference...
A lot. Talk to a lawyer.

///Peter
Apr 7 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3323
by: wooks | last post by:
<?xml version='1.0'?> <userlogin xmlns="urn:faster:userlogin" xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> <login>mick</login> <password>brown</password> </userlogin> Above is my schema instance.
0
4226
by: C. M. Sperberg-McQueen | last post by:
wooks (wookiz@hotmail.com) wrote: > <?xml version='1.0'?> > <userlogin xmlns="urn:faster:userlogin" > xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> > <login>mick</login> > <password>brown</password> > </userlogin> > Above is my schema instance.
6
2489
by: Pieter | last post by:
I've read a lot of posts on "why relax ng is so very good" and on "why w3c xml schema should be the only schema language". I'm, however, still not clear on why I should prefer one over the other. I've made a small list of some good and bad points of both. These points don't really go into the grammar aspects of these languages, but are more about secondary aspects. The grammar aspects are different, but both are suitable for validating...
1
2096
by: Hari Om | last post by:
Subject: XML Schema to XML Schema Conversion I have an XML Schema A which needs to mapped to another XML Schema B. Is there any handy tool which I could use to convert from Schema A to Schema B? Any related informaiton on this is appreciated. Thanks!
4
2395
by: Gordon Dickens | last post by:
I have target xml to generate from schema. All of the XML instances have the same global element i.e. <base>. I would like to combine all of the schemas into a single schema where I could generate any of the specific instances. sample schema one: <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:element name="base">
2
2494
by: Stanimir Stamenkov | last post by:
I'm trying to find out if it is permissible to include a schema document with absent target namespace to a schema with specified target namespace, and if it is, what are the rules to resolve the target namespace of the components from the included schema document. I'm confused because of the rules I read in the XML Schema spec <http://www.w3.org/TR/xmlschema-1/#element-element>: > If the <element> element information item has <schema>...
0
1726
by: Rajesh Jain | last post by:
I Have 2 separate schemas. --------------Schema 1 is defined as below----------- <xs:schema targetNamespace="http://Schemas/1" xmlns="http://Schemas/1" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name="Loan"> <xs:complexType> <xs:sequence> <xs:element name="Borrower" maxOccurs="unbounded"> <xs:complexType> <xs:attribute name="BorrID" use="required">
4
2507
by: Iain A. Mcleod | last post by:
Hi I'm stuck with the following schema validation problem in VS.NET 2003: I have two types of xml document and related schema: project and projectCollection. A projectcollection is just a set of projects. Therefore, I wish to include the project customType in the projectCollection namespace. I therefore have declared two xsd documents: project.xsd and projectcollection.xsd
6
2589
by: Martin | last post by:
Hi, I have a xml file like the one below <?xml version="1.0" encoding="utf-8"?><e1 xmlns:e1="http://tempuri.org/Source1.xsd" e1:att1="1" e1:att2="2" e1:rest="345"/> If I try to create a schema for it with Visual Studio, I get the error "Failed to create a schema for this data file because:
0
11272
by: Derek | last post by:
I am creating an intranet using Visual Web Developer Express Edition. Everything has been working OK until yesterday when I started getting 62 messages all beginning "Could not find schema information for the". I am using Cassini as the web server on my PCand I can still run my site from within VWD. Does anyone know what I have done to cause these messages to appear? Could not find schema information for the element...
0
9948
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9902
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8770
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6603
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5215
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5364
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3866
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3446
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2738
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.