diff --git a/doc/schemas/eis-1.0.xsd b/doc/schemas/eis-1.0.xsd index f01989a5f..e1f42c2c7 100644 --- a/doc/schemas/eis-1.0.xsd +++ b/doc/schemas/eis-1.0.xsd @@ -24,10 +24,8 @@ --> - - + + diff --git a/spec/epp/contact_spec.rb b/spec/epp/contact_spec.rb index ebe0d646d..0bf067ce6 100644 --- a/spec/epp/contact_spec.rb +++ b/spec/epp/contact_spec.rb @@ -15,13 +15,13 @@ describe 'EPP Contact', epp: true do @contact = Fabricate(:contact, registrar: @registrar1) @extension = { - legalDocument: { - value: 'dGVzdCBmYWlsCg==', - attrs: { type: 'pdf' } - }, ident: { value: '37605030299', attrs: { type: 'priv', cc: 'EE' } + }, + legalDocument: { + value: 'dGVzdCBmYWlsCg==', + attrs: { type: 'pdf' } } } end @@ -106,13 +106,13 @@ describe 'EPP Contact', epp: true do it 'successfully saves ident type with legal document' do extension = { - legalDocument: { - value: 'dGVzdCBmYWlsCg==', - attrs: { type: 'pdf' } - }, ident: { value: '1990-22-12', attrs: { type: 'birthday', cc: 'US' } + }, + legalDocument: { + value: 'dGVzdCBmYWlsCg==', + attrs: { type: 'pdf' } } } response = create_request({}, extension) @@ -396,13 +396,13 @@ describe 'EPP Contact', epp: true do it 'should update ident' do extension = { - legalDocument: { - value: 'dGVzdCBmYWlsCg==', - attrs: { type: 'pdf' } - }, ident: { value: '1990-22-12', attrs: { type: 'birthday', cc: 'US' } + }, + legalDocument: { + value: 'dGVzdCBmYWlsCg==', + attrs: { type: 'pdf' } } } response = update_request({ id: { value: 'FIRST0:SH8013' } }, extension)