This is an automated email from the ASF dual-hosted git repository.
grv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ofbiz-site.git The following commit(s) were added to refs/heads/master by this push: new 9d0e544 Added: REST API schema XSD added(OFBIZ-11995) 9d0e544 is described below commit 9d0e544c954b4088d10bad0cded3cf2234c313ef Author: Girish Vasmatkar <[hidden email]> AuthorDate: Tue Sep 22 12:42:45 2020 +0530 Added: REST API schema XSD added(OFBIZ-11995) --- dtds/rest-api.xsd | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) diff --git a/dtds/rest-api.xsd b/dtds/rest-api.xsd new file mode 100644 index 0000000..972dfcf --- /dev/null +++ b/dtds/rest-api.xsd @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<!-- NOTE: files using this schema are found in the service directory in a component when named *.rest.xml --> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified"> + <xs:element name="api"> + <xs:complexType> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="resource"/> + </xs:sequence> + <xs:attribute name="name" type="xs:string" use="required"/> + <xs:attribute name="displayName" type="xs:string"/> + <xs:attribute name="description" type="xs:string"/> + </xs:complexType> + </xs:element> + <xs:element name="resource"> + <xs:complexType> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="operation"/> + </xs:sequence> + <xs:attribute name="name" type="xs:string" use="required"/> + <xs:attribute name="path" type="xs:string" use="required"/> + <xs:attribute name="displayName" type="xs:string"/> + <xs:attribute name="description" type="xs:string"/> + <xs:attribute name="publish" type="xs:boolean" default="true"/> + <xs:attribute name="auth" type="xs:boolean" default="true"/> + </xs:complexType> + </xs:element> + <xs:element name="operation"> + <xs:complexType> + <xs:sequence> + <xs:element minOccurs="1" maxOccurs="1" ref="service"/> + </xs:sequence> + <xs:attribute name="verb" use="required"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="get"/> + <xs:enumeration value="patch"/> + <xs:enumeration value="put"/> + <xs:enumeration value="post"/> + <xs:enumeration value="delete"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="produces" use="optional"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="application/xml"/> + <xs:enumeration value="application/json"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="consumes" use="optional"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="application/xml"/> + <xs:enumeration value="application/json"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="path" type="xs:string" use="optional"/> + <xs:attribute name="description" type="xs:string"/> + <xs:attribute name="auth" type="xs:boolean" default="true"/> + </xs:complexType> + </xs:element> + <xs:element name="service"> + <xs:complexType> + <xs:attribute name="name" type="xs:string" use="required"/> + </xs:complexType> + </xs:element> +</xs:schema> |
Free forum by Nabble | Edit this page |