diff options
author | Rob Austein <sra@hactrn.net> | 2009-08-31 22:24:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-08-31 22:24:48 +0000 |
commit | 1b65eb039f50792d7479cbfbd196f29ff89c7c4d (patch) | |
tree | c17808904c99f3783e4feefc39448584d2c596da /myrpki/schema.rnc | |
parent | f6be347c09042f59b8042083f5009cb98496fbb7 (diff) |
Changes to support structured pubd client names.
svn path=/myrpki/myirbe.py; revision=2722
Diffstat (limited to 'myrpki/schema.rnc')
-rw-r--r-- | myrpki/schema.rnc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/myrpki/schema.rnc b/myrpki/schema.rnc index 57a8ebab..8ec48195 100644 --- a/myrpki/schema.rnc +++ b/myrpki/schema.rnc @@ -9,6 +9,7 @@ default namespace = "http://www.hactrn.net/uris/rpki/myrpki/" base64 = xsd:base64Binary { maxLength="512000" } object_handle = xsd:string { maxLength="255" pattern="[\-_A-Za-z0-9]*" } +pubd_handle = xsd:string { maxLength="255" pattern="[\-_A-Za-z0-9/]*" } uri = xsd:anyURI { maxLength="4096" } asn_list = xsd:string { maxLength="512000" pattern="[\-,0-9]*" } ipv4_list = xsd:string { maxLength="512000" pattern="[\-,0-9/.]*" } @@ -17,6 +18,7 @@ ipv6_list = xsd:string { maxLength="512000" pattern="[\-,0-9/:a-fA-F]*" } start = element myrpki { attribute version { xsd:positiveInteger { maxInclusive="1" } }, attribute handle { object_handle }, + attribute repository_handle { pubd_handle }, roa_request_elt*, child_elt*, parent_elt*, |