Commit b4c6187b authored by poglitsch's avatar poglitsch
Browse files

RFC 4826 types added

parent 05a8439e
Loading
Loading
Loading
Loading
+46 −5
Original line number Diff line number Diff line
@@ -863,11 +863,52 @@ group ACR_CB{
			XSDAUX.anyAttributes anyAttributes
		}
	}
}// end group ACR/CB

	// RFC 4826
	group ResourceListTypes {
      type record ExternalType {
        XSDAUX.anyURI anchor optional,
        XSDAUX.anyAttributes anyAttributes,
        Display_nameType display_name optional,
        record of anytype any_1 optional
      }
    
      type record Entry_refType {
        XSDAUX.anyURI ref,
        XSDAUX.anyAttributes anyAttributes,
        Display_nameType display_name optional,
        record of anytype any_1 optional
      }
    
      type record EntryType {
        XSDAUX.anyURI uri,
        XSDAUX.anyAttributes anyAttributes,
        Display_nameType display_name optional,
        record of anytype any_1 optional
      }
    
      type record ListType {
        XSDAUX.string name optional,
        XSDAUX.anyAttributes anyAttributes,
        Display_nameType display_name optional,
        record of record {
         	ListType list optional,
          	ExternalType external_ optional,
          	EntryType entry optional,
          	Entry_refType entry_Ref optional
        } seq_1 optional,
        record of anytype any_1 optional
      }
    
}// end group ACR/CB
      type record Display_nameType {
        XSDAUX.languageXSD lang optional,
        XSDAUX.string content
      }
    
      type record Resource_lists {
        record of ListType list
      }
	} // end group RFC 4826

} /* end module LibSip_XMLTypes */