We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mapping of sbJson primaryLocation to mdTranslator internal data structure:
"primaryLocation": { "shortName": "asdf", "name": "Robert N Prescott/BRD/CONT/USGS/DOI - Primary Location", "description": "asdf", "location": "asdf", "building": "NRRC Bldg C", "buildingCode": "KBA", "roomNumber": "123", "officePhone": "9702269250", "faxPhone": "9702269230", "latitude": 20, "longitude": 20, "streetAddress": { "line1": "2150 Centre Avenue Bldg C", "line2": "sadf", "mailStopCode": "safd", "city": "Fort Collins", "state": "CO", "zip": "80526", "country": "asdf" }, "mailAddress": { "line1": "2150 Centre Avenue, Building C", "line2": "asdf", "mailStopCode": "asdf", "city": "Fort Collins", "state": "CO", "zip": "80526-8118", "country": "USA" } }
Definition: (none)
Mapping...
Not Mapped...
Mapping to mdTranslator
def newBase intObj = { contacts: [ { contactId: 'CID001', isOrganization: false, name: 'Robert N Prescott', phones: [ { phoneName: 'TTY', phoneNumber: '123-123-1234', phoneServiceTypes: ['tty'] }, { phoneName: 'Office', phoneNumber: '9702269250', phoneServiceTypes: ['voice'] }, { phoneName: 'Fax', phoneNumber: '9702269230', phoneServiceTypes: ['facsimile'] } ], addresses: [ { addressTypes: ['mailing', 'physical'], description: 'asdf', deliveryPoints: [ '150 Centre Avenue Bldg C', 'sadf' ], city: 'Fort Collins', adminArea: 'CO', postalCode: '80526', country: 'asdf' } ] } ] } end
Translation to mdJson
{ "contacts": [ { "contactId": "CID001", "isOrganization": false, "name": "Robert N Prescott", "phone": [ { "phoneName": "TTY", "phoneNumber": "123-123-1234", "service": ["tty"] }, { "phoneName": "Office", "phoneNumber": "9702269250", "service": ["voice"] }, { "phoneName": "Fax", "phoneNumber": "9702269230", "service": ["facsimile"] } ], "address": [ { "addressType": ["mailing", "facsimile"], "description": "asdf", "deliveryPoint": [ "150 Centre Avenue Bldg C", "sadf" ], "city": "Fort Collins", "administrativeArea": "CO", "postalCode": "80526", "country": "asdf" } ] } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Mapping of sbJson primaryLocation to mdTranslator internal data structure:
Definition: (none)
Mapping...
Map to contacts address description
[schema][contacts][n][addresses][n].description
view mdTools
Map to contacts phones
[schema][contacts][n][phones][n].phoneName
view mdTools
[schema][contacts][n][phones][n].phoneNumber
view mdTools
[schema][contacts][n][phones][n].phoneServiceTypes
view mdTools
Map to contacts address deliveryPoints
[schema][contacts][n][addresses][n][deliveryPoints][n]
view mdTools
Map to contacts address city
[schema][contacts][n][addresses][n].city
view mdTools
Map to contacts address adminArea
[schema][contacts][n][addresses][n].city
view mdTools
Map to contacts address postalCode
[schema][contacts][n][addresses][n].postalCode
view mdTools
Map to contacts address country
[schema][contacts][n][addresses][n].country
view mdTools
Not Mapped...
Mapping to mdTranslator
Translation to mdJson
The text was updated successfully, but these errors were encountered: