netsuite-soap 2025.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.envrc +9 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/dependabot.yml +14 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/main.yml +55 -0
- data/.github/workflows/publish.yml +53 -0
- data/.gitignore +23 -0
- data/.rspec +6 -0
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/AGENTS.md +150 -0
- data/CLAUDE.md +111 -0
- data/DEVELOPMENT.md +34 -0
- data/Gemfile +10 -0
- data/HISTORY.md +171 -0
- data/LICENSE +22 -0
- data/README.md +87 -0
- data/Rakefile +130 -0
- data/docs/async.md +46 -0
- data/docs/configuration.md +88 -0
- data/docs/contributing.md +36 -0
- data/docs/usage.md +149 -0
- data/lib/netsuite/actions/abstract_action.rb +32 -0
- data/lib/netsuite/actions/add.rb +93 -0
- data/lib/netsuite/actions/async_add_list.rb +74 -0
- data/lib/netsuite/actions/async_delete_list.rb +40 -0
- data/lib/netsuite/actions/async_get_list.rb +46 -0
- data/lib/netsuite/actions/async_initialize_list.rb +85 -0
- data/lib/netsuite/actions/async_response.rb +52 -0
- data/lib/netsuite/actions/async_search.rb +36 -0
- data/lib/netsuite/actions/async_update_list.rb +53 -0
- data/lib/netsuite/actions/async_upsert_list.rb +53 -0
- data/lib/netsuite/actions/attach_file.rb +87 -0
- data/lib/netsuite/actions/check_async_status.rb +29 -0
- data/lib/netsuite/actions/delete.rb +102 -0
- data/lib/netsuite/actions/delete_list.rb +108 -0
- data/lib/netsuite/actions/get.rb +87 -0
- data/lib/netsuite/actions/get_all.rb +78 -0
- data/lib/netsuite/actions/get_async_result.rb +35 -0
- data/lib/netsuite/actions/get_deleted.rb +92 -0
- data/lib/netsuite/actions/get_list.rb +98 -0
- data/lib/netsuite/actions/get_select_value.rb +80 -0
- data/lib/netsuite/actions/initialize.rb +86 -0
- data/lib/netsuite/actions/search.rb +265 -0
- data/lib/netsuite/actions/update.rb +86 -0
- data/lib/netsuite/actions/update_list.rb +113 -0
- data/lib/netsuite/actions/upsert.rb +86 -0
- data/lib/netsuite/actions/upsert_list.rb +118 -0
- data/lib/netsuite/client.rb +19 -0
- data/lib/netsuite/configuration.rb +470 -0
- data/lib/netsuite/errors.rb +18 -0
- data/lib/netsuite/namespaces/act_sched.rb +11 -0
- data/lib/netsuite/namespaces/comm_general.rb +11 -0
- data/lib/netsuite/namespaces/file_cabinet.rb +11 -0
- data/lib/netsuite/namespaces/list_acct.rb +11 -0
- data/lib/netsuite/namespaces/list_emp.rb +12 -0
- data/lib/netsuite/namespaces/list_mkt.rb +12 -0
- data/lib/netsuite/namespaces/list_rel.rb +11 -0
- data/lib/netsuite/namespaces/list_support.rb +11 -0
- data/lib/netsuite/namespaces/list_website.rb +11 -0
- data/lib/netsuite/namespaces/platform_common.rb +11 -0
- data/lib/netsuite/namespaces/platform_core.rb +11 -0
- data/lib/netsuite/namespaces/setup_custom.rb +11 -0
- data/lib/netsuite/namespaces/tran_bank.rb +11 -0
- data/lib/netsuite/namespaces/tran_cust.rb +11 -0
- data/lib/netsuite/namespaces/tran_emp.rb +11 -0
- data/lib/netsuite/namespaces/tran_general.rb +11 -0
- data/lib/netsuite/namespaces/tran_invt.rb +11 -0
- data/lib/netsuite/namespaces/tran_purch.rb +11 -0
- data/lib/netsuite/namespaces/tran_sales.rb +11 -0
- data/lib/netsuite/passports/token.rb +55 -0
- data/lib/netsuite/passports/user.rb +25 -0
- data/lib/netsuite/records/account.rb +30 -0
- data/lib/netsuite/records/accounting_period.rb +25 -0
- data/lib/netsuite/records/address.rb +46 -0
- data/lib/netsuite/records/assembly_build.rb +39 -0
- data/lib/netsuite/records/assembly_component.rb +26 -0
- data/lib/netsuite/records/assembly_component_list.rb +12 -0
- data/lib/netsuite/records/assembly_item.rb +66 -0
- data/lib/netsuite/records/assembly_unbuild.rb +37 -0
- data/lib/netsuite/records/base_ref_list.rb +17 -0
- data/lib/netsuite/records/bill_address.rb +17 -0
- data/lib/netsuite/records/billing_schedule.rb +33 -0
- data/lib/netsuite/records/billing_schedule_milestone.rb +28 -0
- data/lib/netsuite/records/billing_schedule_milestone_list.rb +14 -0
- data/lib/netsuite/records/billing_schedule_recurrence.rb +28 -0
- data/lib/netsuite/records/billing_schedule_recurrence_list.rb +14 -0
- data/lib/netsuite/records/bin.rb +30 -0
- data/lib/netsuite/records/bin_number.rb +18 -0
- data/lib/netsuite/records/bin_number_list.rb +11 -0
- data/lib/netsuite/records/bin_transfer.rb +38 -0
- data/lib/netsuite/records/bin_transfer_inventory.rb +20 -0
- data/lib/netsuite/records/bin_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/campaign.rb +28 -0
- data/lib/netsuite/records/cash_refund.rb +135 -0
- data/lib/netsuite/records/cash_refund_item.rb +32 -0
- data/lib/netsuite/records/cash_refund_item_list.rb +13 -0
- data/lib/netsuite/records/cash_sale.rb +51 -0
- data/lib/netsuite/records/cash_sale_item.rb +40 -0
- data/lib/netsuite/records/cash_sale_item_list.rb +13 -0
- data/lib/netsuite/records/classification.rb +30 -0
- data/lib/netsuite/records/contact.rb +44 -0
- data/lib/netsuite/records/contact_access_roles.rb +23 -0
- data/lib/netsuite/records/contact_access_roles_list.rb +9 -0
- data/lib/netsuite/records/contact_addressbook.rb +64 -0
- data/lib/netsuite/records/contact_addressbook_list.rb +11 -0
- data/lib/netsuite/records/contact_list.rb +49 -0
- data/lib/netsuite/records/contact_role.rb +23 -0
- data/lib/netsuite/records/cost_category.rb +28 -0
- data/lib/netsuite/records/credit_memo.rb +59 -0
- data/lib/netsuite/records/credit_memo_apply.rb +16 -0
- data/lib/netsuite/records/credit_memo_apply_list.rb +15 -0
- data/lib/netsuite/records/credit_memo_item.rb +34 -0
- data/lib/netsuite/records/credit_memo_item_list.rb +11 -0
- data/lib/netsuite/records/currency.rb +30 -0
- data/lib/netsuite/records/currency_rate.rb +34 -0
- data/lib/netsuite/records/custom_field.rb +23 -0
- data/lib/netsuite/records/custom_field_list.rb +186 -0
- data/lib/netsuite/records/custom_list.rb +27 -0
- data/lib/netsuite/records/custom_list_custom_value.rb +22 -0
- data/lib/netsuite/records/custom_list_custom_value_list.rb +13 -0
- data/lib/netsuite/records/custom_record.rb +56 -0
- data/lib/netsuite/records/custom_record_ref.rb +50 -0
- data/lib/netsuite/records/custom_record_type.rb +30 -0
- data/lib/netsuite/records/customer.rb +265 -0
- data/lib/netsuite/records/customer_addressbook.rb +64 -0
- data/lib/netsuite/records/customer_addressbook_list.rb +11 -0
- data/lib/netsuite/records/customer_category.rb +26 -0
- data/lib/netsuite/records/customer_credit_cards.rb +36 -0
- data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
- data/lib/netsuite/records/customer_currency.rb +28 -0
- data/lib/netsuite/records/customer_currency_list.rb +9 -0
- data/lib/netsuite/records/customer_deposit.rb +47 -0
- data/lib/netsuite/records/customer_deposit_apply.rb +17 -0
- data/lib/netsuite/records/customer_deposit_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_partner.rb +24 -0
- data/lib/netsuite/records/customer_partners_list.rb +9 -0
- data/lib/netsuite/records/customer_payment.rb +56 -0
- data/lib/netsuite/records/customer_payment_apply.rb +17 -0
- data/lib/netsuite/records/customer_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_payment_credit.rb +17 -0
- data/lib/netsuite/records/customer_payment_credit_list.rb +12 -0
- data/lib/netsuite/records/customer_refund.rb +52 -0
- data/lib/netsuite/records/customer_refund_apply.rb +16 -0
- data/lib/netsuite/records/customer_refund_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_refund_deposit.rb +16 -0
- data/lib/netsuite/records/customer_refund_deposit_list.rb +11 -0
- data/lib/netsuite/records/customer_sales_team.rb +24 -0
- data/lib/netsuite/records/customer_sales_team_list.rb +9 -0
- data/lib/netsuite/records/customer_status.rb +29 -0
- data/lib/netsuite/records/department.rb +27 -0
- data/lib/netsuite/records/deposit.rb +40 -0
- data/lib/netsuite/records/deposit_application.rb +64 -0
- data/lib/netsuite/records/deposit_cash_back.rb +42 -0
- data/lib/netsuite/records/deposit_cash_back_list.rb +9 -0
- data/lib/netsuite/records/deposit_other.rb +35 -0
- data/lib/netsuite/records/deposit_other_list.rb +9 -0
- data/lib/netsuite/records/deposit_payment.rb +48 -0
- data/lib/netsuite/records/deposit_payment_list.rb +14 -0
- data/lib/netsuite/records/description_item.rb +34 -0
- data/lib/netsuite/records/discount_item.rb +37 -0
- data/lib/netsuite/records/duration.rb +15 -0
- data/lib/netsuite/records/employee.rb +42 -0
- data/lib/netsuite/records/entity_custom_field.rb +53 -0
- data/lib/netsuite/records/estimate.rb +122 -0
- data/lib/netsuite/records/estimate_item.rb +47 -0
- data/lib/netsuite/records/estimate_item_list.rb +11 -0
- data/lib/netsuite/records/file.rb +31 -0
- data/lib/netsuite/records/folder.rb +26 -0
- data/lib/netsuite/records/gift_cert_redemption.rb +22 -0
- data/lib/netsuite/records/gift_cert_redemption_list.rb +11 -0
- data/lib/netsuite/records/gift_certificate.rb +30 -0
- data/lib/netsuite/records/gift_certificate_item.rb +84 -0
- data/lib/netsuite/records/inbound_shipment.rb +32 -0
- data/lib/netsuite/records/inbound_shipment_item.rb +39 -0
- data/lib/netsuite/records/inbound_shipment_item_list.rb +11 -0
- data/lib/netsuite/records/inter_company_journal_entry.rb +48 -0
- data/lib/netsuite/records/inter_company_journal_entry_line.rb +28 -0
- data/lib/netsuite/records/inter_company_journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/inventory_adjustment.rb +30 -0
- data/lib/netsuite/records/inventory_adjustment_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_adjustment_inventory_list.rb +10 -0
- data/lib/netsuite/records/inventory_assignment.rb +24 -0
- data/lib/netsuite/records/inventory_assignment_list.rb +35 -0
- data/lib/netsuite/records/inventory_detail.rb +18 -0
- data/lib/netsuite/records/inventory_item.rb +341 -0
- data/lib/netsuite/records/inventory_number.rb +34 -0
- data/lib/netsuite/records/inventory_number_locations.rb +16 -0
- data/lib/netsuite/records/inventory_number_locations_list.rb +10 -0
- data/lib/netsuite/records/inventory_transfer.rb +30 -0
- data/lib/netsuite/records/inventory_transfer_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/invoice.rb +167 -0
- data/lib/netsuite/records/invoice_item.rb +46 -0
- data/lib/netsuite/records/invoice_item_list.rb +15 -0
- data/lib/netsuite/records/item_availability.rb +45 -0
- data/lib/netsuite/records/item_fulfillment.rb +62 -0
- data/lib/netsuite/records/item_fulfillment_item.rb +45 -0
- data/lib/netsuite/records/item_fulfillment_item_list.rb +14 -0
- data/lib/netsuite/records/item_fulfillment_package.rb +24 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex.rb +28 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_list.rb +37 -0
- data/lib/netsuite/records/item_fulfillment_package_ups.rb +27 -0
- data/lib/netsuite/records/item_fulfillment_package_ups_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_usps.rb +26 -0
- data/lib/netsuite/records/item_fulfillment_package_usps_list.rb +32 -0
- data/lib/netsuite/records/item_group.rb +37 -0
- data/lib/netsuite/records/item_member.rb +26 -0
- data/lib/netsuite/records/item_member_list.rb +12 -0
- data/lib/netsuite/records/item_option_custom_field.rb +52 -0
- data/lib/netsuite/records/item_receipt.rb +46 -0
- data/lib/netsuite/records/item_receipt_item.rb +43 -0
- data/lib/netsuite/records/item_receipt_item_list.rb +11 -0
- data/lib/netsuite/records/item_vendor.rb +24 -0
- data/lib/netsuite/records/item_vendor_list.rb +11 -0
- data/lib/netsuite/records/job.rb +41 -0
- data/lib/netsuite/records/job_status.rb +25 -0
- data/lib/netsuite/records/journal_entry.rb +48 -0
- data/lib/netsuite/records/journal_entry_line.rb +27 -0
- data/lib/netsuite/records/journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/kit_item.rb +71 -0
- data/lib/netsuite/records/location.rb +40 -0
- data/lib/netsuite/records/locations_list.rb +15 -0
- data/lib/netsuite/records/lot_numbered_assembly_item.rb +64 -0
- data/lib/netsuite/records/lot_numbered_inventory_item.rb +260 -0
- data/lib/netsuite/records/matrix_option_list.rb +71 -0
- data/lib/netsuite/records/member_list.rb +10 -0
- data/lib/netsuite/records/message.rb +30 -0
- data/lib/netsuite/records/non_inventory_purchase_item.rb +52 -0
- data/lib/netsuite/records/non_inventory_resale_item.rb +189 -0
- data/lib/netsuite/records/non_inventory_sale_item.rb +165 -0
- data/lib/netsuite/records/note.rb +33 -0
- data/lib/netsuite/records/note_type.rb +27 -0
- data/lib/netsuite/records/null_field_list.rb +15 -0
- data/lib/netsuite/records/opportunity.rb +45 -0
- data/lib/netsuite/records/opportunity_item.rb +41 -0
- data/lib/netsuite/records/opportunity_item_list.rb +9 -0
- data/lib/netsuite/records/other_charge_sale_item.rb +73 -0
- data/lib/netsuite/records/partner.rb +35 -0
- data/lib/netsuite/records/payment_item.rb +36 -0
- data/lib/netsuite/records/payment_method.rb +28 -0
- data/lib/netsuite/records/payroll_item.rb +36 -0
- data/lib/netsuite/records/phone_call.rb +29 -0
- data/lib/netsuite/records/price.rb +17 -0
- data/lib/netsuite/records/price_level.rb +26 -0
- data/lib/netsuite/records/price_list.rb +9 -0
- data/lib/netsuite/records/pricing.rb +20 -0
- data/lib/netsuite/records/pricing_matrix.rb +11 -0
- data/lib/netsuite/records/promotion_code.rb +38 -0
- data/lib/netsuite/records/promotions.rb +26 -0
- data/lib/netsuite/records/promotions_list.rb +9 -0
- data/lib/netsuite/records/purchase_order.rb +52 -0
- data/lib/netsuite/records/purchase_order_item.rb +42 -0
- data/lib/netsuite/records/purchase_order_item_list.rb +11 -0
- data/lib/netsuite/records/record_ref.rb +38 -0
- data/lib/netsuite/records/record_ref_list.rb +22 -0
- data/lib/netsuite/records/return_authorization.rb +135 -0
- data/lib/netsuite/records/return_authorization_item.rb +43 -0
- data/lib/netsuite/records/return_authorization_item_list.rb +11 -0
- data/lib/netsuite/records/rev_rec_schedule.rb +32 -0
- data/lib/netsuite/records/rev_rec_template.rb +25 -0
- data/lib/netsuite/records/role_list.rb +24 -0
- data/lib/netsuite/records/roles.rb +17 -0
- data/lib/netsuite/records/sales_order.rb +61 -0
- data/lib/netsuite/records/sales_order_item.rb +49 -0
- data/lib/netsuite/records/sales_order_item_list.rb +11 -0
- data/lib/netsuite/records/sales_order_ship_group_list.rb +11 -0
- data/lib/netsuite/records/sales_role.rb +26 -0
- data/lib/netsuite/records/sales_tax_item.rb +34 -0
- data/lib/netsuite/records/serialized_assembly_item.rb +240 -0
- data/lib/netsuite/records/serialized_inventory_item.rb +248 -0
- data/lib/netsuite/records/serialized_inventory_item_location.rb +36 -0
- data/lib/netsuite/records/serialized_inventory_item_locations_list.rb +10 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers.rb +15 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers_list.rb +10 -0
- data/lib/netsuite/records/service_resale_item.rb +154 -0
- data/lib/netsuite/records/service_sale_item.rb +50 -0
- data/lib/netsuite/records/ship_address.rb +17 -0
- data/lib/netsuite/records/site_category.rb +33 -0
- data/lib/netsuite/records/subscription.rb +18 -0
- data/lib/netsuite/records/subscriptions_list.rb +10 -0
- data/lib/netsuite/records/subsidiary.rb +38 -0
- data/lib/netsuite/records/subtotal_item.rb +34 -0
- data/lib/netsuite/records/support_case.rb +32 -0
- data/lib/netsuite/records/support_case_type.rb +26 -0
- data/lib/netsuite/records/task.rb +31 -0
- data/lib/netsuite/records/tax_group.rb +35 -0
- data/lib/netsuite/records/tax_type.rb +22 -0
- data/lib/netsuite/records/term.rb +27 -0
- data/lib/netsuite/records/time_bill.rb +32 -0
- data/lib/netsuite/records/transaction_body_custom_field.rb +61 -0
- data/lib/netsuite/records/transaction_column_custom_field.rb +59 -0
- data/lib/netsuite/records/transaction_ship_group.rb +40 -0
- data/lib/netsuite/records/transfer_order.rb +45 -0
- data/lib/netsuite/records/transfer_order_item.rb +43 -0
- data/lib/netsuite/records/transfer_order_item_list.rb +11 -0
- data/lib/netsuite/records/translation.rb +17 -0
- data/lib/netsuite/records/translation_list.rb +11 -0
- data/lib/netsuite/records/units_type.rb +25 -0
- data/lib/netsuite/records/units_type_uom.rb +20 -0
- data/lib/netsuite/records/units_type_uom_list.rb +12 -0
- data/lib/netsuite/records/vendor.rb +46 -0
- data/lib/netsuite/records/vendor_bill.rb +53 -0
- data/lib/netsuite/records/vendor_bill_expense.rb +40 -0
- data/lib/netsuite/records/vendor_bill_expense_list.rb +13 -0
- data/lib/netsuite/records/vendor_bill_item.rb +46 -0
- data/lib/netsuite/records/vendor_bill_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_category.rb +26 -0
- data/lib/netsuite/records/vendor_credit.rb +54 -0
- data/lib/netsuite/records/vendor_credit_apply.rb +18 -0
- data/lib/netsuite/records/vendor_credit_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_expense.rb +31 -0
- data/lib/netsuite/records/vendor_credit_expense_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_item.rb +34 -0
- data/lib/netsuite/records/vendor_credit_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_currency.rb +26 -0
- data/lib/netsuite/records/vendor_currency_list.rb +9 -0
- data/lib/netsuite/records/vendor_payment.rb +52 -0
- data/lib/netsuite/records/vendor_payment_apply.rb +16 -0
- data/lib/netsuite/records/vendor_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_return_authorization.rb +30 -0
- data/lib/netsuite/records/vendor_return_authorization_item.rb +23 -0
- data/lib/netsuite/records/vendor_return_authorization_item_list.rb +12 -0
- data/lib/netsuite/records/work_order.rb +45 -0
- data/lib/netsuite/records/work_order_item.rb +30 -0
- data/lib/netsuite/records/work_order_item_list.rb +11 -0
- data/lib/netsuite/response.rb +20 -0
- data/lib/netsuite/rest/utilities/request.rb +62 -0
- data/lib/netsuite/rest/utilities/roles.rb +47 -0
- data/lib/netsuite/support/actions.rb +74 -0
- data/lib/netsuite/support/attributes.rb +22 -0
- data/lib/netsuite/support/country.rb +289 -0
- data/lib/netsuite/support/fields.rb +86 -0
- data/lib/netsuite/support/record_refs.rb +30 -0
- data/lib/netsuite/support/records.rb +89 -0
- data/lib/netsuite/support/requests.rb +56 -0
- data/lib/netsuite/support/search_result.rb +150 -0
- data/lib/netsuite/support/sublist.rb +71 -0
- data/lib/netsuite/utilities/data_center.rb +53 -0
- data/lib/netsuite/utilities/strings.rb +15 -0
- data/lib/netsuite/utilities.rb +324 -0
- data/lib/netsuite/version.rb +3 -0
- data/lib/netsuite.rb +348 -0
- data/netsuite.gemspec +30 -0
- data/spec/integration/soap_http_spec.rb +76 -0
- data/spec/netsuite/actions/add_spec.rb +155 -0
- data/spec/netsuite/actions/async_add_list_spec.rb +123 -0
- data/spec/netsuite/actions/async_delete_list_spec.rb +60 -0
- data/spec/netsuite/actions/async_get_list_spec.rb +78 -0
- data/spec/netsuite/actions/async_initialize_list_spec.rb +106 -0
- data/spec/netsuite/actions/async_lifecycle_spec.rb +51 -0
- data/spec/netsuite/actions/async_response_spec.rb +187 -0
- data/spec/netsuite/actions/async_search_spec.rb +27 -0
- data/spec/netsuite/actions/async_update_list_spec.rb +80 -0
- data/spec/netsuite/actions/async_upsert_list_spec.rb +157 -0
- data/spec/netsuite/actions/attach_file_spec.rb +59 -0
- data/spec/netsuite/actions/check_async_status_spec.rb +29 -0
- data/spec/netsuite/actions/delete_list_spec.rb +86 -0
- data/spec/netsuite/actions/delete_spec.rb +93 -0
- data/spec/netsuite/actions/get_all_spec.rb +100 -0
- data/spec/netsuite/actions/get_async_result_spec.rb +78 -0
- data/spec/netsuite/actions/get_deleted_spec.rb +60 -0
- data/spec/netsuite/actions/get_list_spec.rb +157 -0
- data/spec/netsuite/actions/get_select_value_spec.rb +43 -0
- data/spec/netsuite/actions/get_spec.rb +72 -0
- data/spec/netsuite/actions/initialize_spec.rb +34 -0
- data/spec/netsuite/actions/search_spec.rb +387 -0
- data/spec/netsuite/actions/update_list_spec.rb +107 -0
- data/spec/netsuite/actions/update_spec.rb +133 -0
- data/spec/netsuite/actions/upsert_list_spec.rb +112 -0
- data/spec/netsuite/actions/upsert_spec.rb +117 -0
- data/spec/netsuite/configuration_spec.rb +661 -0
- data/spec/netsuite/records/account_spec.rb +107 -0
- data/spec/netsuite/records/accounting_period_spec.rb +138 -0
- data/spec/netsuite/records/address_spec.rb +139 -0
- data/spec/netsuite/records/assembly_item_spec.rb +64 -0
- data/spec/netsuite/records/basic_record_spec.rb +128 -0
- data/spec/netsuite/records/bill_address_spec.rb +52 -0
- data/spec/netsuite/records/billing_schedule_milestone_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_milestone_spec.rb +51 -0
- data/spec/netsuite/records/billing_schedule_recurrence_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_recurrence_spec.rb +49 -0
- data/spec/netsuite/records/billing_schedule_spec.rb +164 -0
- data/spec/netsuite/records/bin_number_spec.rb +23 -0
- data/spec/netsuite/records/campaign_spec.rb +43 -0
- data/spec/netsuite/records/cash_refund_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_item_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_spec.rb +152 -0
- data/spec/netsuite/records/cash_sale_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_sale_item_spec.rb +23 -0
- data/spec/netsuite/records/cash_sale_spec.rb +34 -0
- data/spec/netsuite/records/classification_spec.rb +77 -0
- data/spec/netsuite/records/cost_category_spec.rb +105 -0
- data/spec/netsuite/records/credit_memo_apply_list_spec.rb +27 -0
- data/spec/netsuite/records/credit_memo_apply_spec.rb +14 -0
- data/spec/netsuite/records/credit_memo_item_list_spec.rb +26 -0
- data/spec/netsuite/records/credit_memo_item_spec.rb +29 -0
- data/spec/netsuite/records/credit_memo_spec.rb +213 -0
- data/spec/netsuite/records/currency_rate_spec.rb +45 -0
- data/spec/netsuite/records/custom_field_list_spec.rb +276 -0
- data/spec/netsuite/records/custom_list_spec.rb +21 -0
- data/spec/netsuite/records/custom_record_spec.rb +125 -0
- data/spec/netsuite/records/custom_record_type_spec.rb +114 -0
- data/spec/netsuite/records/customer_addressbook_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_addressbook_spec.rb +105 -0
- data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
- data/spec/netsuite/records/customer_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_payment_credit_list_spec.rb +26 -0
- data/spec/netsuite/records/customer_payment_spec.rb +168 -0
- data/spec/netsuite/records/customer_refund_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_apply_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_deposit_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_deposit_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_spec.rb +205 -0
- data/spec/netsuite/records/customer_sales_team_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_spec.rb +561 -0
- data/spec/netsuite/records/department_spec.rb +103 -0
- data/spec/netsuite/records/deposit_spec.rb +165 -0
- data/spec/netsuite/records/discount_item_spec.rb +125 -0
- data/spec/netsuite/records/duration_spec.rb +14 -0
- data/spec/netsuite/records/employee_spec.rb +148 -0
- data/spec/netsuite/records/entity_custom_field_spec.rb +34 -0
- data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
- data/spec/netsuite/records/estimate_item_spec.rb +35 -0
- data/spec/netsuite/records/estimate_spec.rb +274 -0
- data/spec/netsuite/records/file_spec.rb +11 -0
- data/spec/netsuite/records/folder_spec.rb +33 -0
- data/spec/netsuite/records/gift_cert_redemption_list_spec.rb +26 -0
- data/spec/netsuite/records/gift_cert_redemption_spec.rb +21 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_spec.rb +60 -0
- data/spec/netsuite/records/inter_company_journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/inventory_assignment_list_spec.rb +59 -0
- data/spec/netsuite/records/inventory_assignment_spec.rb +21 -0
- data/spec/netsuite/records/inventory_detail_spec.rb +13 -0
- data/spec/netsuite/records/inventory_item_spec.rb +532 -0
- data/spec/netsuite/records/inventory_transfer_spec.rb +79 -0
- data/spec/netsuite/records/invoice_item_list_spec.rb +24 -0
- data/spec/netsuite/records/invoice_item_spec.rb +79 -0
- data/spec/netsuite/records/invoice_spec.rb +494 -0
- data/spec/netsuite/records/item_availability_spec.rb +59 -0
- data/spec/netsuite/records/item_fulfillment_package_fed_ex_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_ups_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_usps_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_spec.rb +49 -0
- data/spec/netsuite/records/item_group_spec.rb +117 -0
- data/spec/netsuite/records/item_member_list_spec.rb +26 -0
- data/spec/netsuite/records/item_option_custom_field_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_list_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_spec.rb +27 -0
- data/spec/netsuite/records/job_spec.rb +201 -0
- data/spec/netsuite/records/journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/journal_entry_line_spec.rb +59 -0
- data/spec/netsuite/records/journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/kit_item_spec.rb +117 -0
- data/spec/netsuite/records/location_spec.rb +51 -0
- data/spec/netsuite/records/lot_numbered_inventory_item_spec.rb +247 -0
- data/spec/netsuite/records/matrix_option_list_spec.rb +61 -0
- data/spec/netsuite/records/message_spec.rb +49 -0
- data/spec/netsuite/records/non_inventory_resale_item_spec.rb +300 -0
- data/spec/netsuite/records/non_inventory_sale_item_spec.rb +278 -0
- data/spec/netsuite/records/note_spec.rb +134 -0
- data/spec/netsuite/records/note_type_spec.rb +88 -0
- data/spec/netsuite/records/null_field_list_spec.rb +30 -0
- data/spec/netsuite/records/partner_spec.rb +143 -0
- data/spec/netsuite/records/payment_item_spec.rb +117 -0
- data/spec/netsuite/records/payment_method_spec.rb +49 -0
- data/spec/netsuite/records/phone_call_spec.rb +17 -0
- data/spec/netsuite/records/pomo_code_spec.rb +40 -0
- data/spec/netsuite/records/price_level_spec.rb +16 -0
- data/spec/netsuite/records/pricing_matrix_spec.rb +27 -0
- data/spec/netsuite/records/record_ref_spec.rb +87 -0
- data/spec/netsuite/records/return_authorization_item_list_spec.rb +26 -0
- data/spec/netsuite/records/return_authorization_item_spec.rb +31 -0
- data/spec/netsuite/records/return_authorization_spec.rb +62 -0
- data/spec/netsuite/records/rev_rec_template_spec.rb +39 -0
- data/spec/netsuite/records/sales_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/sales_order_item_spec.rb +36 -0
- data/spec/netsuite/records/sales_order_spec.rb +250 -0
- data/spec/netsuite/records/sales_tax_item_spec.rb +26 -0
- data/spec/netsuite/records/service_resale_item_spec.rb +239 -0
- data/spec/netsuite/records/service_sale_item_spec.rb +135 -0
- data/spec/netsuite/records/ship_address_spec.rb +36 -0
- data/spec/netsuite/records/site_category_spec.rb +51 -0
- data/spec/netsuite/records/subscription_spec.rb +37 -0
- data/spec/netsuite/records/subscriptions_list_spec.rb +19 -0
- data/spec/netsuite/records/subsidiary_spec.rb +25 -0
- data/spec/netsuite/records/support_case_spec.rb +157 -0
- data/spec/netsuite/records/support_case_type_spec.rb +22 -0
- data/spec/netsuite/records/tax_type_spec.rb +11 -0
- data/spec/netsuite/records/term_spec.rb +96 -0
- data/spec/netsuite/records/transaction_body_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/transaction_column_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/translation_list_spec.rb +34 -0
- data/spec/netsuite/records/translation_spec.rb +28 -0
- data/spec/netsuite/records/units_type_spec.rb +33 -0
- data/spec/netsuite/records/units_type_uom_list_spec.rb +23 -0
- data/spec/netsuite/records/units_type_uom_spec.rb +14 -0
- data/spec/netsuite/records/vendor_bill_expense_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_expense_spec.rb +72 -0
- data/spec/netsuite/records/vendor_bill_item_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_item_spec.rb +118 -0
- data/spec/netsuite/records/vendor_bill_spec.rb +187 -0
- data/spec/netsuite/records/vendor_credit_spec.rb +29 -0
- data/spec/netsuite/records/vendor_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/vendor_payment_apply_spec.rb +15 -0
- data/spec/netsuite/records/vendor_payment_spec.rb +164 -0
- data/spec/netsuite/records/vendor_spec.rb +145 -0
- data/spec/netsuite/records/work_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/work_order_item_spec.rb +45 -0
- data/spec/netsuite/records/work_order_spec.rb +92 -0
- data/spec/netsuite/response_spec.rb +34 -0
- data/spec/netsuite/support/fields_spec.rb +107 -0
- data/spec/netsuite/support/record_refs_spec.rb +14 -0
- data/spec/netsuite/support/records_spec.rb +60 -0
- data/spec/netsuite/support/refresh_spec.rb +28 -0
- data/spec/netsuite/support/requests_spec.rb +38 -0
- data/spec/netsuite/support/search_result_spec.rb +53 -0
- data/spec/netsuite/support/sublist_spec.rb +42 -0
- data/spec/netsuite/utilities/data_center_spec.rb +110 -0
- data/spec/netsuite/utilities/request_spec.rb +29 -0
- data/spec/netsuite/utilities/roles_spec.rb +145 -0
- data/spec/netsuite/utilities_spec.rb +140 -0
- data/spec/netsuite_spec.rb +41 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/support/configuration.rb +23 -0
- data/spec/support/field_matcher.rb +21 -0
- data/spec/support/fixtures/add/add_customer.xml +16 -0
- data/spec/support/fixtures/add/add_file.xml +20 -0
- data/spec/support/fixtures/add/add_invoice.xml +20 -0
- data/spec/support/fixtures/add/add_invoice_error.xml +19 -0
- data/spec/support/fixtures/add/add_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/async_add_list/async_add_list_pending.xml +18 -0
- data/spec/support/fixtures/async_delete_list/async_delete_list_pending.xml +18 -0
- data/spec/support/fixtures/async_get_list/async_get_list_pending.xml +18 -0
- data/spec/support/fixtures/async_initialize_list/async_initialize_list_pending.xml +18 -0
- data/spec/support/fixtures/async_search/async_search_pending.xml +18 -0
- data/spec/support/fixtures/async_update_list/async_update_list_pending.xml +18 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_customers.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_one_customer.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_with_errors.xml +21 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order.xml +16 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order_error.xml +20 -0
- data/spec/support/fixtures/check_async_status/check_async_status_pending.xml +18 -0
- data/spec/support/fixtures/custom_fields/multi_select.xml +47 -0
- data/spec/support/fixtures/delete/delete_customer.xml +16 -0
- data/spec/support/fixtures/delete/delete_customer_error.xml +21 -0
- data/spec/support/fixtures/delete/delete_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/delete_list/delete_list_customers.xml +26 -0
- data/spec/support/fixtures/delete_list/delete_list_customers_with_errors.xml +31 -0
- data/spec/support/fixtures/get/get_customer.xml +61 -0
- data/spec/support/fixtures/get/get_invoice.xml +101 -0
- data/spec/support/fixtures/get_all/get_all_currencies.xml +24 -0
- data/spec/support/fixtures/get_all/get_all_error.xml +15 -0
- data/spec/support/fixtures/get_async_result/get_async_result_finished.xml +22 -0
- data/spec/support/fixtures/get_async_result/get_async_result_upsert_list_finished.xml +26 -0
- data/spec/support/fixtures/get_async_result/get_async_result_write_list_multiple.xml +34 -0
- data/spec/support/fixtures/get_deleted/get_deleted_invoices.xml +38 -0
- data/spec/support/fixtures/get_item_availability/get_item_availability.xml +46 -0
- data/spec/support/fixtures/get_list/get_list_customer_error.xml +22 -0
- data/spec/support/fixtures/get_list/get_list_customers.xml +21 -0
- data/spec/support/fixtures/get_list/get_list_customers_multiple.xml +28 -0
- data/spec/support/fixtures/get_select_value/empty_result.xml +22 -0
- data/spec/support/fixtures/get_select_value/item_fulfillment_ship_method.xml +43 -0
- data/spec/support/fixtures/initialize/initialize_invoice_from_customer.xml +69 -0
- data/spec/support/fixtures/login/failure_concurrent_requests.xml +15 -0
- data/spec/support/fixtures/login/failure_invalid_credentials.xml +15 -0
- data/spec/support/fixtures/login/success.xml +35 -0
- data/spec/support/fixtures/search/basic_search_contact.xml +39 -0
- data/spec/support/fixtures/search/saved_search_customer.xml +54 -0
- data/spec/support/fixtures/search/saved_search_item.xml +55 -0
- data/spec/support/fixtures/search/saved_search_joined_custom_customer.xml +101 -0
- data/spec/support/fixtures/search/single_search_result.xml +46 -0
- data/spec/support/fixtures/soap/v2025_2_0/wsdl/netsuite.wsdl +2531 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/scheduling.xsd +603 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/schedulingTypes.xsd +198 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinet.xsd +159 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinetTypes.xsd +110 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communication.xsd +210 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communicationTypes.xsd +20 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accounting.xsd +6768 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accountingTypes.xsd +1043 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employeeTypes.xsd +344 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employees.xsd +518 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketing.xsd +528 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketingTypes.xsd +145 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationshipTypes.xsd +190 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationships.xsd +1658 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChain.xsd +282 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChainTypes.xsd +26 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/support.xsd +534 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supportTypes.xsd +74 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/website.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/websiteTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/common.xsd +8411 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/commonTypes.xsd +1371 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/core.xsd +1096 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/coreTypes.xsd +877 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faultTypes.xsd +1446 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faults.xsd +82 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/messages.xsd +664 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customization.xsd +1604 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customizationTypes.xsd +119 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bank.xsd +212 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bankTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customerTypes.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customers.xsd +1131 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanning.xsd +173 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanningTypes.xsd +52 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employeeTypes.xsd +10 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employees.xsd +723 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financial.xsd +88 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financialTypes.xsd +9 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/general.xsd +364 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventory.xsd +780 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventoryTypes.xsd +49 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchaseTypes.xsd +44 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchases.xsd +986 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/saleTypes.xsd +754 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/sales.xsd +2025 -0
- data/spec/support/fixtures/update/update_customer.xml +16 -0
- data/spec/support/fixtures/update/update_customer_error.xml +21 -0
- data/spec/support/fixtures/update/update_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/update/update_invoice.xml +16 -0
- data/spec/support/fixtures/update_list/update_list_items.xml +22 -0
- data/spec/support/fixtures/update_list/update_list_one_item.xml +18 -0
- data/spec/support/fixtures/update_list/update_list_with_errors.xml +32 -0
- data/spec/support/fixtures/upsert/upsert_customer.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice_error.xml +20 -0
- data/spec/support/fixtures/upsert/upsert_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/upsert_list/upsert_list_customers.xml +21 -0
- data/spec/support/fixtures/upsert_list/upsert_list_one_customer.xml +17 -0
- data/spec/support/fixtures/upsert_list/upsert_list_with_errors.xml +32 -0
- data/spec/support/read_only_field_matcher.rb +7 -0
- data/spec/support/record_ref_matcher.rb +25 -0
- data/spec/support/savon.rb +5 -0
- data/spec/support/search_only_field_matcher.rb +7 -0
- data/spec/support/webmock_soap_helper.rb +15 -0
- data/workflow.md +368 -0
- metadata +764 -0
|
@@ -0,0 +1,1043 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:listAcctTyp="urn:types.accounting_2025_2.lists.webservices.netsuite.com" targetNamespace="urn:types.accounting_2025_2.lists.webservices.netsuite.com" elementFormDefault="qualified">
|
|
3
|
+
<!-- contactCategory constants/start -->
|
|
4
|
+
<!-- contactCategory constants/end -->
|
|
5
|
+
<!-- customerCategory constants/start -->
|
|
6
|
+
<!-- customerCategory constants/end -->
|
|
7
|
+
<!-- priceLevel constants/start -->
|
|
8
|
+
<!-- priceLevel constants/end -->
|
|
9
|
+
<!-- winLossReason constants/start -->
|
|
10
|
+
<!-- winLossReason constants/end -->
|
|
11
|
+
<!-- term constants/start -->
|
|
12
|
+
<!-- term constants/end -->
|
|
13
|
+
<!-- noteType constants/start -->
|
|
14
|
+
<!-- noteType constants/end -->
|
|
15
|
+
<!-- paymentMethod constants/start -->
|
|
16
|
+
<!-- paymentMethod constants/end -->
|
|
17
|
+
<!-- leadSource constants/start -->
|
|
18
|
+
<!-- leadSource constants/end -->
|
|
19
|
+
<!-- descriptionItem constants/start -->
|
|
20
|
+
<!-- descriptionItem constants/end -->
|
|
21
|
+
<!-- discountItem constants/start -->
|
|
22
|
+
<!-- discountItem constants/end -->
|
|
23
|
+
<!-- markupItem constants/start -->
|
|
24
|
+
<!-- markupItem constants/end -->
|
|
25
|
+
<!-- paymentItem constants/start -->
|
|
26
|
+
<!-- paymentItem constants/end -->
|
|
27
|
+
<!-- subtotalItem constants/start -->
|
|
28
|
+
<!-- subtotalItem constants/end -->
|
|
29
|
+
<!-- currency constants/start -->
|
|
30
|
+
<simpleType name="CurrencyLocale">
|
|
31
|
+
<restriction base="xsd:string">
|
|
32
|
+
<enumeration value="_afghanistanPashto"/>
|
|
33
|
+
<enumeration value="_afghanistanPersian"/>
|
|
34
|
+
<enumeration value="_alandIslandsSwedish"/>
|
|
35
|
+
<enumeration value="_albaniaAlbanian"/>
|
|
36
|
+
<enumeration value="_algeriaArabic"/>
|
|
37
|
+
<enumeration value="_angolaPortuguese"/>
|
|
38
|
+
<enumeration value="_anguillaEnglish"/>
|
|
39
|
+
<enumeration value="_antiguaAndBarbudaEnglish"/>
|
|
40
|
+
<enumeration value="_argentinaSpanish"/>
|
|
41
|
+
<enumeration value="_armeniaArmenian"/>
|
|
42
|
+
<enumeration value="_arubaEnglish"/>
|
|
43
|
+
<enumeration value="_arubaPortuguese"/>
|
|
44
|
+
<enumeration value="_australiaEnglish"/>
|
|
45
|
+
<enumeration value="_austriaGerman"/>
|
|
46
|
+
<enumeration value="_azerbaijanAzerbaijani"/>
|
|
47
|
+
<enumeration value="_bahamasEnglish"/>
|
|
48
|
+
<enumeration value="_bahrainArabic"/>
|
|
49
|
+
<enumeration value="_barbadosEnglish"/>
|
|
50
|
+
<enumeration value="_belarusByelorussian"/>
|
|
51
|
+
<enumeration value="_belgiumDutch"/>
|
|
52
|
+
<enumeration value="_belgiumFrench"/>
|
|
53
|
+
<enumeration value="_belizeEnglish"/>
|
|
54
|
+
<enumeration value="_bengali"/>
|
|
55
|
+
<enumeration value="_beninFrench"/>
|
|
56
|
+
<enumeration value="_bermudaEnglish"/>
|
|
57
|
+
<enumeration value="_bhutanDzongkha"/>
|
|
58
|
+
<enumeration value="_boliviaSpanish"/>
|
|
59
|
+
<enumeration value="_bonaireSaintEustatiusAndSabaDutch"/>
|
|
60
|
+
<enumeration value="_bosniaAndHerzegovinaBosnian"/>
|
|
61
|
+
<enumeration value="_botswanaEnglish"/>
|
|
62
|
+
<enumeration value="_brazilPortuguese"/>
|
|
63
|
+
<enumeration value="_bruneiMalay"/>
|
|
64
|
+
<enumeration value="_bulgariaBulgarian"/>
|
|
65
|
+
<enumeration value="_burkinaFasoFrench"/>
|
|
66
|
+
<enumeration value="_burundiFrench"/>
|
|
67
|
+
<enumeration value="_cambodiaKhmer"/>
|
|
68
|
+
<enumeration value="_cameroonFrench"/>
|
|
69
|
+
<enumeration value="_canadaEnglish"/>
|
|
70
|
+
<enumeration value="_canadaFrench"/>
|
|
71
|
+
<enumeration value="_canaryIslandsSpanish"/>
|
|
72
|
+
<enumeration value="_capeVerdePortuguese"/>
|
|
73
|
+
<enumeration value="_caymanIslandsEnglish"/>
|
|
74
|
+
<enumeration value="_centralAfricanRepublicFrench"/>
|
|
75
|
+
<enumeration value="_ceutaAndMelillaSpanish"/>
|
|
76
|
+
<enumeration value="_chadFrench"/>
|
|
77
|
+
<enumeration value="_chileSpanish"/>
|
|
78
|
+
<enumeration value="_chinaChinese"/>
|
|
79
|
+
<enumeration value="_colombiaSpanish"/>
|
|
80
|
+
<enumeration value="_comorosFrench"/>
|
|
81
|
+
<enumeration value="_congoDemocraticRepublicEnglish"/>
|
|
82
|
+
<enumeration value="_congoDemocraticRepublicFrench"/>
|
|
83
|
+
<enumeration value="_congoRepublicOfFrench"/>
|
|
84
|
+
<enumeration value="_costaRicaSpanish"/>
|
|
85
|
+
<enumeration value="_coteDivoireFrench"/>
|
|
86
|
+
<enumeration value="_croatiaCroatian"/>
|
|
87
|
+
<enumeration value="_cubaSpanish"/>
|
|
88
|
+
<enumeration value="_curacaoDutch"/>
|
|
89
|
+
<enumeration value="_cyprusEnglish"/>
|
|
90
|
+
<enumeration value="_cyprusEnglishEuro"/>
|
|
91
|
+
<enumeration value="_czechRepublicCzech"/>
|
|
92
|
+
<enumeration value="_denmarkDanish"/>
|
|
93
|
+
<enumeration value="_djiboutiArabic"/>
|
|
94
|
+
<enumeration value="_djiboutiFrench"/>
|
|
95
|
+
<enumeration value="_dominicaEnglish"/>
|
|
96
|
+
<enumeration value="_dominicanRepublicSpanish"/>
|
|
97
|
+
<enumeration value="_ecuadorSpanish"/>
|
|
98
|
+
<enumeration value="_egyptArabic"/>
|
|
99
|
+
<enumeration value="_elSalvadorSpanish"/>
|
|
100
|
+
<enumeration value="_equatorialGuineaSpanish"/>
|
|
101
|
+
<enumeration value="_eritreaAfar"/>
|
|
102
|
+
<enumeration value="_estoniaEstonian"/>
|
|
103
|
+
<enumeration value="_ethiopiaAmharic"/>
|
|
104
|
+
<enumeration value="_falklandIslandsEnglish"/>
|
|
105
|
+
<enumeration value="_fijiFijian"/>
|
|
106
|
+
<enumeration value="_finlandFinnish"/>
|
|
107
|
+
<enumeration value="_finlandFinnishEuro"/>
|
|
108
|
+
<enumeration value="_franceFrench"/>
|
|
109
|
+
<enumeration value="_franceFrenchEuro"/>
|
|
110
|
+
<enumeration value="_frenchPolynesiaFrench"/>
|
|
111
|
+
<enumeration value="_gabonFrench"/>
|
|
112
|
+
<enumeration value="_gambiaEnglish"/>
|
|
113
|
+
<enumeration value="_georgiaGeorgian"/>
|
|
114
|
+
<enumeration value="_germanyGerman"/>
|
|
115
|
+
<enumeration value="_germanyGermanEuro"/>
|
|
116
|
+
<enumeration value="_ghanaEnglish"/>
|
|
117
|
+
<enumeration value="_gibraltarEnglish"/>
|
|
118
|
+
<enumeration value="_goldOunce"/>
|
|
119
|
+
<enumeration value="_greeceGreek"/>
|
|
120
|
+
<enumeration value="_grenadaEnglish"/>
|
|
121
|
+
<enumeration value="_guatemalaSpanish"/>
|
|
122
|
+
<enumeration value="_guineaBissauPortuguese"/>
|
|
123
|
+
<enumeration value="_guineaFrench"/>
|
|
124
|
+
<enumeration value="_guyanaEnglish"/>
|
|
125
|
+
<enumeration value="_haitian"/>
|
|
126
|
+
<enumeration value="_hondurasSpanish"/>
|
|
127
|
+
<enumeration value="_hongKongChinese"/>
|
|
128
|
+
<enumeration value="_hungaryHungarian"/>
|
|
129
|
+
<enumeration value="_icelandIcelandic"/>
|
|
130
|
+
<enumeration value="_indiaEnglish"/>
|
|
131
|
+
<enumeration value="_indiaGujarati"/>
|
|
132
|
+
<enumeration value="_indiaHindi"/>
|
|
133
|
+
<enumeration value="_indiaKannada"/>
|
|
134
|
+
<enumeration value="_indiaMarathi"/>
|
|
135
|
+
<enumeration value="_indiaPanjabi"/>
|
|
136
|
+
<enumeration value="_indiaTamil"/>
|
|
137
|
+
<enumeration value="_indiaTelugu"/>
|
|
138
|
+
<enumeration value="_indonesiaIndonesian"/>
|
|
139
|
+
<enumeration value="_iranPersian"/>
|
|
140
|
+
<enumeration value="_iraqArabic"/>
|
|
141
|
+
<enumeration value="_irelandEnglish"/>
|
|
142
|
+
<enumeration value="_israelHebrew"/>
|
|
143
|
+
<enumeration value="_italyItalian"/>
|
|
144
|
+
<enumeration value="_italyItalianEuro"/>
|
|
145
|
+
<enumeration value="_jamaicaEnglish"/>
|
|
146
|
+
<enumeration value="_japanJapanese"/>
|
|
147
|
+
<enumeration value="_jordanArabic"/>
|
|
148
|
+
<enumeration value="_jordanEnglish"/>
|
|
149
|
+
<enumeration value="_kazakhstanRussian"/>
|
|
150
|
+
<enumeration value="_kenyaEnglish"/>
|
|
151
|
+
<enumeration value="_kuwaitArabic"/>
|
|
152
|
+
<enumeration value="_kuwaitEnglish"/>
|
|
153
|
+
<enumeration value="_kyrgyzstanRussian"/>
|
|
154
|
+
<enumeration value="_laosLao"/>
|
|
155
|
+
<enumeration value="_latviaLatvianLettish"/>
|
|
156
|
+
<enumeration value="_lebanonArabic"/>
|
|
157
|
+
<enumeration value="_lesothoEnglish"/>
|
|
158
|
+
<enumeration value="_liberiaEnglish"/>
|
|
159
|
+
<enumeration value="_libyaArabic"/>
|
|
160
|
+
<enumeration value="_lithuaniaLithuanian"/>
|
|
161
|
+
<enumeration value="_luxembourgFrench"/>
|
|
162
|
+
<enumeration value="_luxembourgGerman"/>
|
|
163
|
+
<enumeration value="_luxembourgLuxembourgish"/>
|
|
164
|
+
<enumeration value="_macauChinese"/>
|
|
165
|
+
<enumeration value="_macedoniaMacedonian"/>
|
|
166
|
+
<enumeration value="_malawiEnglish"/>
|
|
167
|
+
<enumeration value="_malaysiaMalay"/>
|
|
168
|
+
<enumeration value="_maldivesDhivehi"/>
|
|
169
|
+
<enumeration value="_maliFrench"/>
|
|
170
|
+
<enumeration value="_mauritiusEnglish"/>
|
|
171
|
+
<enumeration value="_mexicoSpanish"/>
|
|
172
|
+
<enumeration value="_moldovaRomanian"/>
|
|
173
|
+
<enumeration value="_moldovaRussian"/>
|
|
174
|
+
<enumeration value="_mongoliaMongolian"/>
|
|
175
|
+
<enumeration value="_moroccoArabic"/>
|
|
176
|
+
<enumeration value="_mozambiquePortuguese"/>
|
|
177
|
+
<enumeration value="_myanmarBurmese"/>
|
|
178
|
+
<enumeration value="_namibiaEnglish"/>
|
|
179
|
+
<enumeration value="_nepalNepali"/>
|
|
180
|
+
<enumeration value="_netherlandsAntillesDutch"/>
|
|
181
|
+
<enumeration value="_netherlandsDutch"/>
|
|
182
|
+
<enumeration value="_netherlandsDutchEuro"/>
|
|
183
|
+
<enumeration value="_newCaledoniaFrench"/>
|
|
184
|
+
<enumeration value="_newZealandEnglish"/>
|
|
185
|
+
<enumeration value="_nicaraguaSpanish"/>
|
|
186
|
+
<enumeration value="_nigerFrench"/>
|
|
187
|
+
<enumeration value="_nigeriaEnglish"/>
|
|
188
|
+
<enumeration value="_northKoreaKorean"/>
|
|
189
|
+
<enumeration value="_norwayNorwegian"/>
|
|
190
|
+
<enumeration value="_omanArabic"/>
|
|
191
|
+
<enumeration value="_pakistanUrdu"/>
|
|
192
|
+
<enumeration value="_palladiumOunce"/>
|
|
193
|
+
<enumeration value="_panamaSpanish"/>
|
|
194
|
+
<enumeration value="_papuaNewGuineaEnglish"/>
|
|
195
|
+
<enumeration value="_paraguaySpanish"/>
|
|
196
|
+
<enumeration value="_peruSpanish"/>
|
|
197
|
+
<enumeration value="_philippinesEnglish"/>
|
|
198
|
+
<enumeration value="_philippinesTagalog"/>
|
|
199
|
+
<enumeration value="_platinumOunce"/>
|
|
200
|
+
<enumeration value="_polandPolish"/>
|
|
201
|
+
<enumeration value="_portugalPortuguese"/>
|
|
202
|
+
<enumeration value="_portugalPortugueseEuro"/>
|
|
203
|
+
<enumeration value="_puertoRicoSpanish"/>
|
|
204
|
+
<enumeration value="_qatarArabic"/>
|
|
205
|
+
<enumeration value="_qatarEnglish"/>
|
|
206
|
+
<enumeration value="_romaniaRomanian"/>
|
|
207
|
+
<enumeration value="_russiaRussian"/>
|
|
208
|
+
<enumeration value="_rwandaFrench"/>
|
|
209
|
+
<enumeration value="_saintBarthelemyFrench"/>
|
|
210
|
+
<enumeration value="_saintHelenaEnglish"/>
|
|
211
|
+
<enumeration value="_saintKittsAndNevisEnglish"/>
|
|
212
|
+
<enumeration value="_saintLuciaEnglish"/>
|
|
213
|
+
<enumeration value="_saintMartinEnglish"/>
|
|
214
|
+
<enumeration value="_saintVincentAndTheGrenadinesEnglish"/>
|
|
215
|
+
<enumeration value="_samoaSamoan"/>
|
|
216
|
+
<enumeration value="_saoTomeAndPrincipePortuguese"/>
|
|
217
|
+
<enumeration value="_saudiArabiaArabic"/>
|
|
218
|
+
<enumeration value="_senegalFrench"/>
|
|
219
|
+
<enumeration value="_serbiaAndMontenegroSerbian"/>
|
|
220
|
+
<enumeration value="_serbiaSerbian"/>
|
|
221
|
+
<enumeration value="_serbiaSerboCroatian"/>
|
|
222
|
+
<enumeration value="_seychellesEnglish"/>
|
|
223
|
+
<enumeration value="_seychellesFrench"/>
|
|
224
|
+
<enumeration value="_sierraLeoneEnglish"/>
|
|
225
|
+
<enumeration value="_silverOunce"/>
|
|
226
|
+
<enumeration value="_singaporeEnglish"/>
|
|
227
|
+
<enumeration value="_sintMaartenDutch"/>
|
|
228
|
+
<enumeration value="_slovakiaSlovak"/>
|
|
229
|
+
<enumeration value="_slovakiaSlovakEuro"/>
|
|
230
|
+
<enumeration value="_sloveniaSlovenian"/>
|
|
231
|
+
<enumeration value="_sloveniaSlovenianEuro"/>
|
|
232
|
+
<enumeration value="_solomonIslandsEnglish"/>
|
|
233
|
+
<enumeration value="_somaliaSomali"/>
|
|
234
|
+
<enumeration value="_southAfricaAfrikaans"/>
|
|
235
|
+
<enumeration value="_southAfricaEnglish"/>
|
|
236
|
+
<enumeration value="_southKoreaKorean"/>
|
|
237
|
+
<enumeration value="_southSudanEnglish"/>
|
|
238
|
+
<enumeration value="_spainCatalan"/>
|
|
239
|
+
<enumeration value="_spainSpanish"/>
|
|
240
|
+
<enumeration value="_spainSpanishEuro"/>
|
|
241
|
+
<enumeration value="_sriLankaSinhalese"/>
|
|
242
|
+
<enumeration value="_sudanArabic"/>
|
|
243
|
+
<enumeration value="_surinameDutch"/>
|
|
244
|
+
<enumeration value="_swazilandSwati"/>
|
|
245
|
+
<enumeration value="_swedenSwedish"/>
|
|
246
|
+
<enumeration value="_switzerlandFrench"/>
|
|
247
|
+
<enumeration value="_switzerlandGerman"/>
|
|
248
|
+
<enumeration value="_switzerlandItalian"/>
|
|
249
|
+
<enumeration value="_syriaArabic"/>
|
|
250
|
+
<enumeration value="_taiwanChinese"/>
|
|
251
|
+
<enumeration value="_tajikistanTajik"/>
|
|
252
|
+
<enumeration value="_tanzaniaEnglish"/>
|
|
253
|
+
<enumeration value="_thailandThai"/>
|
|
254
|
+
<enumeration value="_togoFrench"/>
|
|
255
|
+
<enumeration value="_tongaTonga"/>
|
|
256
|
+
<enumeration value="_trinidadAndTobagoEnglish"/>
|
|
257
|
+
<enumeration value="_tunisiaArabic"/>
|
|
258
|
+
<enumeration value="_turkeyTurkish"/>
|
|
259
|
+
<enumeration value="_turkmenistanTurkmen"/>
|
|
260
|
+
<enumeration value="_turksAndCaicosIslandsEnglish"/>
|
|
261
|
+
<enumeration value="_ugandaEnglish"/>
|
|
262
|
+
<enumeration value="_ukraineUkrainian"/>
|
|
263
|
+
<enumeration value="_unitedArabEmiratesArabic"/>
|
|
264
|
+
<enumeration value="_unitedArabEmiratesEnglish"/>
|
|
265
|
+
<enumeration value="_unitedKingdomEnglish"/>
|
|
266
|
+
<enumeration value="_unitedStatesEnglish"/>
|
|
267
|
+
<enumeration value="_uruguaySpanish"/>
|
|
268
|
+
<enumeration value="_uzbekistanUzbek"/>
|
|
269
|
+
<enumeration value="_vanuatuEnglish"/>
|
|
270
|
+
<enumeration value="_vanuatuFrench"/>
|
|
271
|
+
<enumeration value="_venezuelaSpanish"/>
|
|
272
|
+
<enumeration value="_vietnamVietnamese"/>
|
|
273
|
+
<enumeration value="_wallisAndFutunaFrench"/>
|
|
274
|
+
<enumeration value="_yemenArabic"/>
|
|
275
|
+
<enumeration value="_zambiaEnglish"/>
|
|
276
|
+
</restriction>
|
|
277
|
+
</simpleType>
|
|
278
|
+
<!-- currency constants/end -->
|
|
279
|
+
<!-- expenseCategory constants/start -->
|
|
280
|
+
<!-- expenseCategory constants/end -->
|
|
281
|
+
<!-- AccountType constants/start -->
|
|
282
|
+
<simpleType name="AccountType">
|
|
283
|
+
<restriction base="xsd:string">
|
|
284
|
+
<enumeration value="_accountsPayable"/>
|
|
285
|
+
<enumeration value="_accountsReceivable"/>
|
|
286
|
+
<enumeration value="_bank"/>
|
|
287
|
+
<enumeration value="_costOfGoodsSold"/>
|
|
288
|
+
<enumeration value="_creditCard"/>
|
|
289
|
+
<enumeration value="_deferredExpense"/>
|
|
290
|
+
<enumeration value="_deferredRevenue"/>
|
|
291
|
+
<enumeration value="_equity"/>
|
|
292
|
+
<enumeration value="_expense"/>
|
|
293
|
+
<enumeration value="_fixedAsset"/>
|
|
294
|
+
<enumeration value="_income"/>
|
|
295
|
+
<enumeration value="_longTermLiability"/>
|
|
296
|
+
<enumeration value="_nonPosting"/>
|
|
297
|
+
<enumeration value="_otherAsset"/>
|
|
298
|
+
<enumeration value="_otherCurrentAsset"/>
|
|
299
|
+
<enumeration value="_otherCurrentLiability"/>
|
|
300
|
+
<enumeration value="_otherExpense"/>
|
|
301
|
+
<enumeration value="_otherIncome"/>
|
|
302
|
+
<enumeration value="_statistical"/>
|
|
303
|
+
<enumeration value="_unbilledReceivable"/>
|
|
304
|
+
</restriction>
|
|
305
|
+
</simpleType>
|
|
306
|
+
<!-- AccountType constants/end -->
|
|
307
|
+
<!-- department constants/start -->
|
|
308
|
+
<!-- department constants/end -->
|
|
309
|
+
<!-- classification constants/start -->
|
|
310
|
+
<!-- classification constants/end -->
|
|
311
|
+
<!-- location constants/start -->
|
|
312
|
+
<!-- location constants/end -->
|
|
313
|
+
<!-- unitsType constants/start -->
|
|
314
|
+
<!-- unitsType constants/end -->
|
|
315
|
+
<!-- ItemCostingMethod constants/start -->
|
|
316
|
+
<simpleType name="ItemCostingMethod">
|
|
317
|
+
<restriction base="xsd:string">
|
|
318
|
+
<enumeration value="_average"/>
|
|
319
|
+
<enumeration value="_fifo"/>
|
|
320
|
+
<enumeration value="_groupAverage"/>
|
|
321
|
+
<enumeration value="_lifo"/>
|
|
322
|
+
<enumeration value="_lotNumbered"/>
|
|
323
|
+
<enumeration value="_serialized"/>
|
|
324
|
+
<enumeration value="_standard"/>
|
|
325
|
+
</restriction>
|
|
326
|
+
</simpleType>
|
|
327
|
+
<!-- ItemCostingMethod constants/end -->
|
|
328
|
+
<!-- ItemProductFeed constants/start -->
|
|
329
|
+
<simpleType name="ItemProductFeed">
|
|
330
|
+
<restriction base="xsd:string">
|
|
331
|
+
<enumeration value="_googleBase"/>
|
|
332
|
+
<enumeration value="_nexTag"/>
|
|
333
|
+
<enumeration value="_shoppingCom"/>
|
|
334
|
+
<enumeration value="_shopzilla"/>
|
|
335
|
+
<enumeration value="_yahooShopping"/>
|
|
336
|
+
</restriction>
|
|
337
|
+
</simpleType>
|
|
338
|
+
<!-- ItemProductFeed constants/end -->
|
|
339
|
+
<!-- ItemType constants/start -->
|
|
340
|
+
<simpleType name="ItemType">
|
|
341
|
+
<restriction base="xsd:string">
|
|
342
|
+
<enumeration value="_assembly"/>
|
|
343
|
+
<enumeration value="_description"/>
|
|
344
|
+
<enumeration value="_discount"/>
|
|
345
|
+
<enumeration value="_downloadItem"/>
|
|
346
|
+
<enumeration value="_giftCertificateItem"/>
|
|
347
|
+
<enumeration value="_inventoryItem"/>
|
|
348
|
+
<enumeration value="_itemGroup"/>
|
|
349
|
+
<enumeration value="_kit"/>
|
|
350
|
+
<enumeration value="_markup"/>
|
|
351
|
+
<enumeration value="_nonInventoryItem"/>
|
|
352
|
+
<enumeration value="_otherCharge"/>
|
|
353
|
+
<enumeration value="_payment"/>
|
|
354
|
+
<enumeration value="_service"/>
|
|
355
|
+
<enumeration value="_subtotal"/>
|
|
356
|
+
</restriction>
|
|
357
|
+
</simpleType>
|
|
358
|
+
<!-- ItemType constants/end -->
|
|
359
|
+
<!-- ItemWeightUnit constants/start -->
|
|
360
|
+
<simpleType name="ItemWeightUnit">
|
|
361
|
+
<restriction base="xsd:string">
|
|
362
|
+
<enumeration value="_g"/>
|
|
363
|
+
<enumeration value="_kg"/>
|
|
364
|
+
<enumeration value="_lb"/>
|
|
365
|
+
<enumeration value="_oz"/>
|
|
366
|
+
</restriction>
|
|
367
|
+
</simpleType>
|
|
368
|
+
<!-- ItemWeightUnit constants/end -->
|
|
369
|
+
<!-- ItemPreferenceCriterion constants/start -->
|
|
370
|
+
<simpleType name="ItemPreferenceCriterion">
|
|
371
|
+
<restriction base="xsd:string">
|
|
372
|
+
<enumeration value="_A"/>
|
|
373
|
+
<enumeration value="_B"/>
|
|
374
|
+
<enumeration value="_C"/>
|
|
375
|
+
<enumeration value="_D"/>
|
|
376
|
+
<enumeration value="_E"/>
|
|
377
|
+
<enumeration value="_F"/>
|
|
378
|
+
</restriction>
|
|
379
|
+
</simpleType>
|
|
380
|
+
<!-- ItemPreferenceCriterion constants/end -->
|
|
381
|
+
<!-- ItemOverallQuantityPricingType constants/start -->
|
|
382
|
+
<simpleType name="ItemOverallQuantityPricingType">
|
|
383
|
+
<restriction base="xsd:string">
|
|
384
|
+
<enumeration value="_byLineQuantity"/>
|
|
385
|
+
<enumeration value="_byOverallItemQuantity"/>
|
|
386
|
+
<enumeration value="_byOverallParentQuantity"/>
|
|
387
|
+
<enumeration value="_byOverallScheduleQuantity"/>
|
|
388
|
+
</restriction>
|
|
389
|
+
</simpleType>
|
|
390
|
+
<!-- ItemOverallQuantityPricingType constants/end -->
|
|
391
|
+
<!-- ScheduleBCode constants/start -->
|
|
392
|
+
<simpleType name="ScheduleBCode">
|
|
393
|
+
<restriction base="xsd:string">
|
|
394
|
+
<enumeration value="_1000"/>
|
|
395
|
+
<enumeration value="_1000cubicMeters"/>
|
|
396
|
+
<enumeration value="_barrels"/>
|
|
397
|
+
<enumeration value="_carat"/>
|
|
398
|
+
<enumeration value="_cleanYieldKilogram"/>
|
|
399
|
+
<enumeration value="_contentKilogram"/>
|
|
400
|
+
<enumeration value="_contentTon"/>
|
|
401
|
+
<enumeration value="_cubicMeters"/>
|
|
402
|
+
<enumeration value="_curie"/>
|
|
403
|
+
<enumeration value="_dozen"/>
|
|
404
|
+
<enumeration value="_dozenPairs"/>
|
|
405
|
+
<enumeration value="_dozenPieces"/>
|
|
406
|
+
<enumeration value="_fiberMeter"/>
|
|
407
|
+
<enumeration value="_gram"/>
|
|
408
|
+
<enumeration value="_gross"/>
|
|
409
|
+
<enumeration value="_grossContainers"/>
|
|
410
|
+
<enumeration value="_hundred"/>
|
|
411
|
+
<enumeration value="_kilogram"/>
|
|
412
|
+
<enumeration value="_kilogramTotalSugars"/>
|
|
413
|
+
<enumeration value="_liter"/>
|
|
414
|
+
<enumeration value="_meter"/>
|
|
415
|
+
<enumeration value="_millicurie"/>
|
|
416
|
+
<enumeration value="_noQuantityReq"/>
|
|
417
|
+
<enumeration value="_number"/>
|
|
418
|
+
<enumeration value="_pack"/>
|
|
419
|
+
<enumeration value="_pairs"/>
|
|
420
|
+
<enumeration value="_pieces"/>
|
|
421
|
+
<enumeration value="_proofLiter"/>
|
|
422
|
+
<enumeration value="_runningBales"/>
|
|
423
|
+
<enumeration value="_square"/>
|
|
424
|
+
<enumeration value="_squareCentimeters"/>
|
|
425
|
+
<enumeration value="_squareMeters"/>
|
|
426
|
+
<enumeration value="_ton"/>
|
|
427
|
+
</restriction>
|
|
428
|
+
</simpleType>
|
|
429
|
+
<!-- ScheduleBCode constants/end -->
|
|
430
|
+
<!-- ItemSubType constants/start -->
|
|
431
|
+
<simpleType name="ItemSubType">
|
|
432
|
+
<restriction base="xsd:string">
|
|
433
|
+
<enumeration value="_forPurchase"/>
|
|
434
|
+
<enumeration value="_forResale"/>
|
|
435
|
+
<enumeration value="_forSale"/>
|
|
436
|
+
</restriction>
|
|
437
|
+
</simpleType>
|
|
438
|
+
<!-- ItemSubType constants/end -->
|
|
439
|
+
<!-- CurrencyCurrencyPrecision/start -->
|
|
440
|
+
<simpleType name="CurrencyCurrencyPrecision">
|
|
441
|
+
<restriction base="xsd:string">
|
|
442
|
+
<enumeration value="_two"/>
|
|
443
|
+
<enumeration value="_zero"/>
|
|
444
|
+
</restriction>
|
|
445
|
+
</simpleType>
|
|
446
|
+
<!-- CurrencyCurrencyPrecision/end -->
|
|
447
|
+
<!-- CurrencyFxRateUpdateTimezone/start -->
|
|
448
|
+
<simpleType name="CurrencyFxRateUpdateTimezone">
|
|
449
|
+
<restriction base="xsd:string">
|
|
450
|
+
<enumeration value="_americaNewYork"/>
|
|
451
|
+
<enumeration value="_asiaMagadan"/>
|
|
452
|
+
<enumeration value="_asiaTokyo"/>
|
|
453
|
+
<enumeration value="_europeParis"/>
|
|
454
|
+
</restriction>
|
|
455
|
+
</simpleType>
|
|
456
|
+
<!-- CurrencyFxRateUpdateTimezone /end -->
|
|
457
|
+
<!-- SalesTaxItemAvailable constants/start -->
|
|
458
|
+
<simpleType name="SalesTaxItemAvailable">
|
|
459
|
+
<restriction base="xsd:string">
|
|
460
|
+
<enumeration value="_both"/>
|
|
461
|
+
<enumeration value="_purchase"/>
|
|
462
|
+
<enumeration value="_sale"/>
|
|
463
|
+
</restriction>
|
|
464
|
+
</simpleType>
|
|
465
|
+
<!-- SalesTaxItemAvailable constants/end -->
|
|
466
|
+
<!-- ItemEbayAuctionDuration/start -->
|
|
467
|
+
<simpleType name="ItemEbayAuctionDuration">
|
|
468
|
+
<restriction base="xsd:string">
|
|
469
|
+
<enumeration value="_10days"/>
|
|
470
|
+
<enumeration value="_120days"/>
|
|
471
|
+
<enumeration value="_1day"/>
|
|
472
|
+
<enumeration value="_30days"/>
|
|
473
|
+
<enumeration value="_3days"/>
|
|
474
|
+
<enumeration value="_5days"/>
|
|
475
|
+
<enumeration value="_60days"/>
|
|
476
|
+
<enumeration value="_7days"/>
|
|
477
|
+
<enumeration value="_90days"/>
|
|
478
|
+
<enumeration value="_goodUntilCancelled"/>
|
|
479
|
+
</restriction>
|
|
480
|
+
</simpleType>
|
|
481
|
+
<!-- ItemEbayAuctionDuration/end -->
|
|
482
|
+
<simpleType name="ItemOutOfStockBehavior">
|
|
483
|
+
<restriction base="xsd:string">
|
|
484
|
+
<enumeration value="_allowBackOrdersButDisplayOutOfStockMessage"/>
|
|
485
|
+
<enumeration value="_allowBackOrdersWithNoOutOfStockMessage"/>
|
|
486
|
+
<enumeration value="_default"/>
|
|
487
|
+
<enumeration value="_disallowBackOrdersButDisplayOutOfStockMessage"/>
|
|
488
|
+
<enumeration value="_removeItemWhenOutOfStock"/>
|
|
489
|
+
</restriction>
|
|
490
|
+
</simpleType>
|
|
491
|
+
<simpleType name="ItemEbayRelistingOption">
|
|
492
|
+
<restriction base="xsd:string">
|
|
493
|
+
<enumeration value="_doNotRelist"/>
|
|
494
|
+
<enumeration value="_relistWhenItemExpires"/>
|
|
495
|
+
<enumeration value="_relistWhenItemIsSold"/>
|
|
496
|
+
<enumeration value="_relistWhenItemIsSoldExpires"/>
|
|
497
|
+
</restriction>
|
|
498
|
+
</simpleType>
|
|
499
|
+
<simpleType name="ConsolidatedRate">
|
|
500
|
+
<restriction base="xsd:string">
|
|
501
|
+
<enumeration value="_average"/>
|
|
502
|
+
<enumeration value="_current"/>
|
|
503
|
+
<enumeration value="_historical"/>
|
|
504
|
+
</restriction>
|
|
505
|
+
</simpleType>
|
|
506
|
+
<simpleType name="CashFlowRateType">
|
|
507
|
+
<restriction base="xsd:string">
|
|
508
|
+
<enumeration value="_average"/>
|
|
509
|
+
<enumeration value="_current"/>
|
|
510
|
+
<enumeration value="_historical"/>
|
|
511
|
+
</restriction>
|
|
512
|
+
</simpleType>
|
|
513
|
+
<simpleType name="GeneralRateType">
|
|
514
|
+
<restriction base="xsd:string">
|
|
515
|
+
<enumeration value="_average"/>
|
|
516
|
+
<enumeration value="_current"/>
|
|
517
|
+
<enumeration value="_historical"/>
|
|
518
|
+
</restriction>
|
|
519
|
+
</simpleType>
|
|
520
|
+
<simpleType name="ItemMatrixType">
|
|
521
|
+
<restriction base="xsd:string">
|
|
522
|
+
<enumeration value="_parent"/>
|
|
523
|
+
<enumeration value="_child"/>
|
|
524
|
+
</restriction>
|
|
525
|
+
</simpleType>
|
|
526
|
+
<simpleType name="ItemDemandSource">
|
|
527
|
+
<restriction base="xsd:string">
|
|
528
|
+
<enumeration value="_enteredAndPlannedOrders"/>
|
|
529
|
+
<enumeration value="_forecastAndOrders"/>
|
|
530
|
+
<enumeration value="_forecastConsumption"/>
|
|
531
|
+
<enumeration value="_forecastFromDemandPlan"/>
|
|
532
|
+
</restriction>
|
|
533
|
+
</simpleType>
|
|
534
|
+
<simpleType name="ItemSupplyLotSizingMethod">
|
|
535
|
+
<restriction base="xsd:string">
|
|
536
|
+
<enumeration value="_fixedLotMultiple"/>
|
|
537
|
+
<enumeration value="_fixedLotSize"/>
|
|
538
|
+
<enumeration value="_lotForLot"/>
|
|
539
|
+
<enumeration value="_minimumOrderQuantity"/>
|
|
540
|
+
<enumeration value="_periodsOfSupply"/>
|
|
541
|
+
</restriction>
|
|
542
|
+
</simpleType>
|
|
543
|
+
<simpleType name="ItemSupplyType">
|
|
544
|
+
<restriction base="xsd:string">
|
|
545
|
+
<enumeration value="_build"/>
|
|
546
|
+
<enumeration value="_purchase"/>
|
|
547
|
+
<enumeration value="_transfer"/>
|
|
548
|
+
</restriction>
|
|
549
|
+
</simpleType>
|
|
550
|
+
<simpleType name="ItemSupplyReplenishmentMethod">
|
|
551
|
+
<restriction base="xsd:string">
|
|
552
|
+
<enumeration value="_masterProductionScheduling"/>
|
|
553
|
+
<enumeration value="_materialRequirementsPlanning"/>
|
|
554
|
+
<enumeration value="_reorderPoint"/>
|
|
555
|
+
<enumeration value="_timePhased"/>
|
|
556
|
+
</restriction>
|
|
557
|
+
</simpleType>
|
|
558
|
+
<simpleType name="RevRecScheduleRecogIntervalSrc">
|
|
559
|
+
<restriction base="xsd:string">
|
|
560
|
+
<enumeration value="_revRecDatesSpecifiedOnTransaction"/>
|
|
561
|
+
<enumeration value="_billingScheduleTranDateOnSalesOrder"/>
|
|
562
|
+
<enumeration value="_billingScheduleRevRecDateOnSalesOrder"/>
|
|
563
|
+
<enumeration value="_revRecDatesSpecifiedOnSalesOrder"/>
|
|
564
|
+
</restriction>
|
|
565
|
+
</simpleType>
|
|
566
|
+
<simpleType name="RevRecScheduleRecurrenceType">
|
|
567
|
+
<restriction base="xsd:string">
|
|
568
|
+
<enumeration value="_custom"/>
|
|
569
|
+
<enumeration value="_straightLineByEvenPeriods"/>
|
|
570
|
+
<enumeration value="_straightLineProrateFirstAndLastPeriod"/>
|
|
571
|
+
<enumeration value="_straightLineProrateFirstAndLastPeriodPeriodRate"/>
|
|
572
|
+
<enumeration value="_straightLineUsingExactDays"/>
|
|
573
|
+
</restriction>
|
|
574
|
+
</simpleType>
|
|
575
|
+
<simpleType name="RevRecScheduleAmortizationType">
|
|
576
|
+
<restriction base="xsd:string">
|
|
577
|
+
<enumeration value="_standard"/>
|
|
578
|
+
<enumeration value="_variable"/>
|
|
579
|
+
</restriction>
|
|
580
|
+
</simpleType>
|
|
581
|
+
<simpleType name="RevRecScheduleAmortizationStatus">
|
|
582
|
+
<restriction base="xsd:string">
|
|
583
|
+
<enumeration value="_notStarted"/>
|
|
584
|
+
<enumeration value="_inProgress"/>
|
|
585
|
+
<enumeration value="_completed"/>
|
|
586
|
+
<enumeration value="_onHold"/>
|
|
587
|
+
</restriction>
|
|
588
|
+
</simpleType>
|
|
589
|
+
<simpleType name="CostCategoryItemCostType">
|
|
590
|
+
<restriction base="xsd:string">
|
|
591
|
+
<enumeration value="_laborRun"/>
|
|
592
|
+
<enumeration value="_laborRunOverhead"/>
|
|
593
|
+
<enumeration value="_laborSetup"/>
|
|
594
|
+
<enumeration value="_laborSetupOverhead"/>
|
|
595
|
+
<enumeration value="_landed"/>
|
|
596
|
+
<enumeration value="_machineRun"/>
|
|
597
|
+
<enumeration value="_machineRunOverhead"/>
|
|
598
|
+
<enumeration value="_machineSetup"/>
|
|
599
|
+
<enumeration value="_machineSetupOverhead"/>
|
|
600
|
+
<enumeration value="_material"/>
|
|
601
|
+
<enumeration value="_materialOverhead"/>
|
|
602
|
+
<enumeration value="_outsourcingCharge"/>
|
|
603
|
+
<enumeration value="_service"/>
|
|
604
|
+
</restriction>
|
|
605
|
+
</simpleType>
|
|
606
|
+
<simpleType name="ItemAtpMethod">
|
|
607
|
+
<restriction base="xsd:string">
|
|
608
|
+
<enumeration value="_cumulativeAtpWithLookAhead"/>
|
|
609
|
+
<enumeration value="_discreteAtp"/>
|
|
610
|
+
</restriction>
|
|
611
|
+
</simpleType>
|
|
612
|
+
<simpleType name="AssemblyItemEffectiveBomControl">
|
|
613
|
+
<restriction base="xsd:string">
|
|
614
|
+
<enumeration value="_effectiveDate"/>
|
|
615
|
+
<enumeration value="_revisionControl"/>
|
|
616
|
+
</restriction>
|
|
617
|
+
</simpleType>
|
|
618
|
+
<simpleType name="ItemInvtClassification">
|
|
619
|
+
<restriction base="xsd:string">
|
|
620
|
+
<enumeration value="_a"/>
|
|
621
|
+
<enumeration value="_b"/>
|
|
622
|
+
<enumeration value="_c"/>
|
|
623
|
+
</restriction>
|
|
624
|
+
</simpleType>
|
|
625
|
+
<simpleType name="PeriodicLotSizeType">
|
|
626
|
+
<restriction base="xsd:string">
|
|
627
|
+
<enumeration value="_interval"/>
|
|
628
|
+
<enumeration value="_monthly"/>
|
|
629
|
+
<enumeration value="_weekly"/>
|
|
630
|
+
</restriction>
|
|
631
|
+
</simpleType>
|
|
632
|
+
<simpleType name="HazmatPackingGroup">
|
|
633
|
+
<restriction base="xsd:string">
|
|
634
|
+
<enumeration value="_i"/>
|
|
635
|
+
<enumeration value="_ii"/>
|
|
636
|
+
<enumeration value="_iii"/>
|
|
637
|
+
</restriction>
|
|
638
|
+
</simpleType>
|
|
639
|
+
<simpleType name="TaxAcctType">
|
|
640
|
+
<restriction base="xsd:string">
|
|
641
|
+
<enumeration value="_sale"/>
|
|
642
|
+
<enumeration value="_purchase"/>
|
|
643
|
+
</restriction>
|
|
644
|
+
</simpleType>
|
|
645
|
+
<simpleType name="ItemOverheadType">
|
|
646
|
+
<restriction base="xsd:string">
|
|
647
|
+
<enumeration value="_amountBaseUnit"/>
|
|
648
|
+
<enumeration value="_percentOfMaterial"/>
|
|
649
|
+
<enumeration value="_percentOfTotal"/>
|
|
650
|
+
</restriction>
|
|
651
|
+
</simpleType>
|
|
652
|
+
<simpleType name="ItemCostAccountingStatus">
|
|
653
|
+
<restriction base="xsd:string">
|
|
654
|
+
<enumeration value="_complete"/>
|
|
655
|
+
<enumeration value="_failed"/>
|
|
656
|
+
<enumeration value="_pending"/>
|
|
657
|
+
<enumeration value="_processing"/>
|
|
658
|
+
</restriction>
|
|
659
|
+
</simpleType>
|
|
660
|
+
<simpleType name="BillingScheduleRecurrenceRecurrenceUnits">
|
|
661
|
+
<restriction base="xsd:string">
|
|
662
|
+
<enumeration value="_custom"/>
|
|
663
|
+
<enumeration value="_days"/>
|
|
664
|
+
<enumeration value="_months"/>
|
|
665
|
+
<enumeration value="_weeks"/>
|
|
666
|
+
</restriction>
|
|
667
|
+
</simpleType>
|
|
668
|
+
<simpleType name="BillingScheduleType">
|
|
669
|
+
<restriction base="xsd:string">
|
|
670
|
+
<enumeration value="_chargeBased"/>
|
|
671
|
+
<enumeration value="_fixedBidInterval"/>
|
|
672
|
+
<enumeration value="_fixedBidMilestone"/>
|
|
673
|
+
<enumeration value="_standard"/>
|
|
674
|
+
<enumeration value="_timeAndMaterials"/>
|
|
675
|
+
</restriction>
|
|
676
|
+
</simpleType>
|
|
677
|
+
<simpleType name="BillingScheduleFrequency">
|
|
678
|
+
<restriction base="xsd:string">
|
|
679
|
+
<enumeration value="_annually"/>
|
|
680
|
+
<enumeration value="_custom"/>
|
|
681
|
+
<enumeration value="_daily"/>
|
|
682
|
+
<enumeration value="_endOfPeriod"/>
|
|
683
|
+
<enumeration value="_everyFourWeeks"/>
|
|
684
|
+
<enumeration value="_everyThreeYears"/>
|
|
685
|
+
<enumeration value="_everyTwoMonths"/>
|
|
686
|
+
<enumeration value="_everyTwoWeeks"/>
|
|
687
|
+
<enumeration value="_everyTwoYears"/>
|
|
688
|
+
<enumeration value="_hourly"/>
|
|
689
|
+
<enumeration value="_monthly"/>
|
|
690
|
+
<enumeration value="_never"/>
|
|
691
|
+
<enumeration value="_oneTime"/>
|
|
692
|
+
<enumeration value="_quarterly"/>
|
|
693
|
+
<enumeration value="_startOfPeriod"/>
|
|
694
|
+
<enumeration value="_twiceAMonth"/>
|
|
695
|
+
<enumeration value="_twiceAYear"/>
|
|
696
|
+
<enumeration value="_weekly"/>
|
|
697
|
+
</restriction>
|
|
698
|
+
</simpleType>
|
|
699
|
+
<simpleType name="ItemAccountMappingItemAccount">
|
|
700
|
+
<restriction base="xsd:string">
|
|
701
|
+
<enumeration value="_asset"/>
|
|
702
|
+
<enumeration value="_costOfGoods"/>
|
|
703
|
+
<enumeration value="_customerReturnVariance"/>
|
|
704
|
+
<enumeration value="_deferral"/>
|
|
705
|
+
<enumeration value="_deferredRevenue"/>
|
|
706
|
+
<enumeration value="_discount"/>
|
|
707
|
+
<enumeration value="_dropShipExpense"/>
|
|
708
|
+
<enumeration value="_exchangeRateVariance"/>
|
|
709
|
+
<enumeration value="_expense"/>
|
|
710
|
+
<enumeration value="_foreignCurrencyAdjustmentRevenueAccount"/>
|
|
711
|
+
<enumeration value="_gainLoss"/>
|
|
712
|
+
<enumeration value="_income"/>
|
|
713
|
+
<enumeration value="_intercompanyCostOfGoods"/>
|
|
714
|
+
<enumeration value="_intercompanyDeferredRevenue"/>
|
|
715
|
+
<enumeration value="_intercompanyExpense"/>
|
|
716
|
+
<enumeration value="_intercompanyIncome"/>
|
|
717
|
+
<enumeration value="_liability"/>
|
|
718
|
+
<enumeration value="_markup"/>
|
|
719
|
+
<enumeration value="_payment"/>
|
|
720
|
+
<enumeration value="_priceVariance"/>
|
|
721
|
+
<enumeration value="_productionPriceVariance"/>
|
|
722
|
+
<enumeration value="_productionQuantityVariance"/>
|
|
723
|
+
<enumeration value="_purchasePriceVariance"/>
|
|
724
|
+
<enumeration value="_quantityVariance"/>
|
|
725
|
+
<enumeration value="_scrap"/>
|
|
726
|
+
<enumeration value="_unbuildVariance"/>
|
|
727
|
+
<enumeration value="_vendorReturnVariance"/>
|
|
728
|
+
<enumeration value="_wipVariance"/>
|
|
729
|
+
<enumeration value="_workInProcess"/>
|
|
730
|
+
<enumeration value="_writeOff"/>
|
|
731
|
+
</restriction>
|
|
732
|
+
</simpleType>
|
|
733
|
+
<simpleType name="AccountingBookStatus">
|
|
734
|
+
<restriction base="xsd:string">
|
|
735
|
+
<enumeration value="_active"/>
|
|
736
|
+
<enumeration value="_inactive"/>
|
|
737
|
+
<enumeration value="_pending"/>
|
|
738
|
+
</restriction>
|
|
739
|
+
</simpleType>
|
|
740
|
+
<simpleType name="BillingScheduleRepeatEvery">
|
|
741
|
+
<restriction base="xsd:string">
|
|
742
|
+
<enumeration value="_1"/>
|
|
743
|
+
<enumeration value="_2"/>
|
|
744
|
+
<enumeration value="_3"/>
|
|
745
|
+
<enumeration value="_4"/>
|
|
746
|
+
<enumeration value="_6"/>
|
|
747
|
+
</restriction>
|
|
748
|
+
</simpleType>
|
|
749
|
+
<simpleType name="BillingScheduleMonthDow">
|
|
750
|
+
<restriction base="xsd:string">
|
|
751
|
+
<enumeration value="_sunday"/>
|
|
752
|
+
<enumeration value="_monday"/>
|
|
753
|
+
<enumeration value="_tuesday"/>
|
|
754
|
+
<enumeration value="_wednesday"/>
|
|
755
|
+
<enumeration value="_thursday"/>
|
|
756
|
+
<enumeration value="_friday"/>
|
|
757
|
+
<enumeration value="_saturday"/>
|
|
758
|
+
<enumeration value="_day"/>
|
|
759
|
+
</restriction>
|
|
760
|
+
</simpleType>
|
|
761
|
+
<simpleType name="BillingScheduleYearMonth">
|
|
762
|
+
<restriction base="xsd:string">
|
|
763
|
+
<enumeration value="_january"/>
|
|
764
|
+
<enumeration value="_february"/>
|
|
765
|
+
<enumeration value="_march"/>
|
|
766
|
+
<enumeration value="_april"/>
|
|
767
|
+
<enumeration value="_may"/>
|
|
768
|
+
<enumeration value="_june"/>
|
|
769
|
+
<enumeration value="_july"/>
|
|
770
|
+
<enumeration value="_august"/>
|
|
771
|
+
<enumeration value="_september"/>
|
|
772
|
+
<enumeration value="_october"/>
|
|
773
|
+
<enumeration value="_november"/>
|
|
774
|
+
<enumeration value="_december"/>
|
|
775
|
+
</restriction>
|
|
776
|
+
</simpleType>
|
|
777
|
+
<simpleType name="BillingScheduleYearDow">
|
|
778
|
+
<restriction base="xsd:string">
|
|
779
|
+
<enumeration value="_sunday"/>
|
|
780
|
+
<enumeration value="_monday"/>
|
|
781
|
+
<enumeration value="_tuesday"/>
|
|
782
|
+
<enumeration value="_wednesday"/>
|
|
783
|
+
<enumeration value="_thursday"/>
|
|
784
|
+
<enumeration value="_friday"/>
|
|
785
|
+
<enumeration value="_saturday"/>
|
|
786
|
+
<enumeration value="_day"/>
|
|
787
|
+
</restriction>
|
|
788
|
+
</simpleType>
|
|
789
|
+
<simpleType name="BillingScheduleYearDowim">
|
|
790
|
+
<restriction base="xsd:string">
|
|
791
|
+
<enumeration value="_first"/>
|
|
792
|
+
<enumeration value="_second"/>
|
|
793
|
+
<enumeration value="_third"/>
|
|
794
|
+
<enumeration value="_fourth"/>
|
|
795
|
+
<enumeration value="_last"/>
|
|
796
|
+
</restriction>
|
|
797
|
+
</simpleType>
|
|
798
|
+
<simpleType name="BillingScheduleYearDowimMonth">
|
|
799
|
+
<restriction base="xsd:string">
|
|
800
|
+
<enumeration value="_january"/>
|
|
801
|
+
<enumeration value="_february"/>
|
|
802
|
+
<enumeration value="_march"/>
|
|
803
|
+
<enumeration value="_april"/>
|
|
804
|
+
<enumeration value="_may"/>
|
|
805
|
+
<enumeration value="_june"/>
|
|
806
|
+
<enumeration value="_july"/>
|
|
807
|
+
<enumeration value="_august"/>
|
|
808
|
+
<enumeration value="_september"/>
|
|
809
|
+
<enumeration value="_october"/>
|
|
810
|
+
<enumeration value="_november"/>
|
|
811
|
+
<enumeration value="_december"/>
|
|
812
|
+
</restriction>
|
|
813
|
+
</simpleType>
|
|
814
|
+
<simpleType name="BillingScheduleMonthDowim">
|
|
815
|
+
<restriction base="xsd:string">
|
|
816
|
+
<enumeration value="_first"/>
|
|
817
|
+
<enumeration value="_second"/>
|
|
818
|
+
<enumeration value="_third"/>
|
|
819
|
+
<enumeration value="_fourth"/>
|
|
820
|
+
<enumeration value="_last"/>
|
|
821
|
+
</restriction>
|
|
822
|
+
</simpleType>
|
|
823
|
+
<simpleType name="BillingScheduleRecurrenceMode">
|
|
824
|
+
<restriction base="xsd:string">
|
|
825
|
+
<enumeration value="_dom"/>
|
|
826
|
+
<enumeration value="_dowim"/>
|
|
827
|
+
</restriction>
|
|
828
|
+
</simpleType>
|
|
829
|
+
<simpleType name="InventoryItemFraudRisk">
|
|
830
|
+
<restriction base="xsd:string">
|
|
831
|
+
<enumeration value="_high"/>
|
|
832
|
+
<enumeration value="_low"/>
|
|
833
|
+
<enumeration value="_medium"/>
|
|
834
|
+
</restriction>
|
|
835
|
+
</simpleType>
|
|
836
|
+
<simpleType name="BillingScheduleRecurrencePattern">
|
|
837
|
+
<restriction base="xsd:string">
|
|
838
|
+
<enumeration value="_anniversaryBillDate"/>
|
|
839
|
+
<enumeration value="_fixedBillDate"/>
|
|
840
|
+
</restriction>
|
|
841
|
+
</simpleType>
|
|
842
|
+
<simpleType name="LocationTimeZone">
|
|
843
|
+
<restriction base="xsd:string">
|
|
844
|
+
<enumeration value="_africaCairo"/>
|
|
845
|
+
<enumeration value="_africaCasablanca"/>
|
|
846
|
+
<enumeration value="_africaJohannesburg"/>
|
|
847
|
+
<enumeration value="_africaNairobi"/>
|
|
848
|
+
<enumeration value="_africaTunis"/>
|
|
849
|
+
<enumeration value="_africaWindhoek"/>
|
|
850
|
+
<enumeration value="_americaAnchorage"/>
|
|
851
|
+
<enumeration value="_americaArgentinaBuenosAires"/>
|
|
852
|
+
<enumeration value="_americaBogota"/>
|
|
853
|
+
<enumeration value="_americaCaracas"/>
|
|
854
|
+
<enumeration value="_americaCayenne"/>
|
|
855
|
+
<enumeration value="_americaChicago"/>
|
|
856
|
+
<enumeration value="_americaChihuahua"/>
|
|
857
|
+
<enumeration value="_americaDenver"/>
|
|
858
|
+
<enumeration value="_americaGodthab"/>
|
|
859
|
+
<enumeration value="_americaGuatemala"/>
|
|
860
|
+
<enumeration value="_americaHalifax"/>
|
|
861
|
+
<enumeration value="_americaIndianaIndianapolis"/>
|
|
862
|
+
<enumeration value="_americaLaPaz"/>
|
|
863
|
+
<enumeration value="_americaLosAngeles"/>
|
|
864
|
+
<enumeration value="_americaManaus"/>
|
|
865
|
+
<enumeration value="_americaMexicoCity"/>
|
|
866
|
+
<enumeration value="_americaMontevideo"/>
|
|
867
|
+
<enumeration value="_americaNewYork"/>
|
|
868
|
+
<enumeration value="_americaNoronha"/>
|
|
869
|
+
<enumeration value="_americaPhoenix"/>
|
|
870
|
+
<enumeration value="_americaRegina"/>
|
|
871
|
+
<enumeration value="_americaSantiago"/>
|
|
872
|
+
<enumeration value="_americaSaoPaulo"/>
|
|
873
|
+
<enumeration value="_americaStJohns"/>
|
|
874
|
+
<enumeration value="_americaTijuana"/>
|
|
875
|
+
<enumeration value="_asiaAlmaty"/>
|
|
876
|
+
<enumeration value="_asiaAmman"/>
|
|
877
|
+
<enumeration value="_asiaBaghdad"/>
|
|
878
|
+
<enumeration value="_asiaBaku"/>
|
|
879
|
+
<enumeration value="_asiaBangkok"/>
|
|
880
|
+
<enumeration value="_asiaBeirut"/>
|
|
881
|
+
<enumeration value="_asiaDhaka"/>
|
|
882
|
+
<enumeration value="_asiaHongKong"/>
|
|
883
|
+
<enumeration value="_asiaIrkutsk"/>
|
|
884
|
+
<enumeration value="_asiaJerusalem"/>
|
|
885
|
+
<enumeration value="_asiaKabul"/>
|
|
886
|
+
<enumeration value="_asiaKarachi"/>
|
|
887
|
+
<enumeration value="_asiaKathmandu"/>
|
|
888
|
+
<enumeration value="_asiaKolkata"/>
|
|
889
|
+
<enumeration value="_asiaKrasnoyarsk"/>
|
|
890
|
+
<enumeration value="_asiaKualaLumpur"/>
|
|
891
|
+
<enumeration value="_asiaManila"/>
|
|
892
|
+
<enumeration value="_asiaMuscat"/>
|
|
893
|
+
<enumeration value="_asiaRangoon"/>
|
|
894
|
+
<enumeration value="_asiaRiyadh"/>
|
|
895
|
+
<enumeration value="_asiaSeoul"/>
|
|
896
|
+
<enumeration value="_asiaTaipei"/>
|
|
897
|
+
<enumeration value="_asiaTashkent"/>
|
|
898
|
+
<enumeration value="_asiaTbilisi"/>
|
|
899
|
+
<enumeration value="_asiaTehran"/>
|
|
900
|
+
<enumeration value="_asiaTokyo"/>
|
|
901
|
+
<enumeration value="_asiaVladivostok"/>
|
|
902
|
+
<enumeration value="_asiaYakutsk"/>
|
|
903
|
+
<enumeration value="_asiaYekaterinburg"/>
|
|
904
|
+
<enumeration value="_asiaYerevan"/>
|
|
905
|
+
<enumeration value="_atlanticAzores"/>
|
|
906
|
+
<enumeration value="_atlanticCapeVerde"/>
|
|
907
|
+
<enumeration value="_atlanticReykjavik"/>
|
|
908
|
+
<enumeration value="_australiaAdelaide"/>
|
|
909
|
+
<enumeration value="_australiaBrisbane"/>
|
|
910
|
+
<enumeration value="_australiaDarwin"/>
|
|
911
|
+
<enumeration value="_australiaHobart"/>
|
|
912
|
+
<enumeration value="_australiaPerth"/>
|
|
913
|
+
<enumeration value="_australiaSydney"/>
|
|
914
|
+
<enumeration value="_etcGmtPlus12"/>
|
|
915
|
+
<enumeration value="_europeAmsterdam"/>
|
|
916
|
+
<enumeration value="_europeBudapest"/>
|
|
917
|
+
<enumeration value="_europeIstanbul"/>
|
|
918
|
+
<enumeration value="_europeKiev"/>
|
|
919
|
+
<enumeration value="_europeLondon"/>
|
|
920
|
+
<enumeration value="_europeMinsk"/>
|
|
921
|
+
<enumeration value="_europeMoscow"/>
|
|
922
|
+
<enumeration value="_europeParis"/>
|
|
923
|
+
<enumeration value="_europeWarsaw"/>
|
|
924
|
+
<enumeration value="_pacificAuckland"/>
|
|
925
|
+
<enumeration value="_pacificGuadalcanal"/>
|
|
926
|
+
<enumeration value="_pacificGuam"/>
|
|
927
|
+
<enumeration value="_pacificHonolulu"/>
|
|
928
|
+
<enumeration value="_pacificKwajalein"/>
|
|
929
|
+
<enumeration value="_pacificPagoPago"/>
|
|
930
|
+
<enumeration value="_pacificTongatapu"/>
|
|
931
|
+
</restriction>
|
|
932
|
+
</simpleType>
|
|
933
|
+
<simpleType name="FairValuePriceFairValueRangePolicy">
|
|
934
|
+
<restriction base="xsd:string">
|
|
935
|
+
<enumeration value="_boundary"/>
|
|
936
|
+
<enumeration value="_fairValue"/>
|
|
937
|
+
<enumeration value="_high"/>
|
|
938
|
+
<enumeration value="_low"/>
|
|
939
|
+
</restriction>
|
|
940
|
+
</simpleType>
|
|
941
|
+
<simpleType name="LocationGeolocationMethod">
|
|
942
|
+
<restriction base="xsd:string">
|
|
943
|
+
<enumeration value="_deriveFromPostalCode"/>
|
|
944
|
+
<enumeration value="_useLatLongCoordinates"/>
|
|
945
|
+
</restriction>
|
|
946
|
+
</simpleType>
|
|
947
|
+
<simpleType name="LocationAutoAssignmentRegionSetting">
|
|
948
|
+
<restriction base="xsd:string">
|
|
949
|
+
<enumeration value="_allowSpecifiedRegionsOnly"/>
|
|
950
|
+
<enumeration value="_allowWorldwide"/>
|
|
951
|
+
<enumeration value="_allowWorldwideExceptExcludedRegions"/>
|
|
952
|
+
<enumeration value="_disallow"/>
|
|
953
|
+
</restriction>
|
|
954
|
+
</simpleType>
|
|
955
|
+
<simpleType name="LocationType">
|
|
956
|
+
<restriction base="xsd:string">
|
|
957
|
+
<enumeration value="_store"/>
|
|
958
|
+
<enumeration value="_warehouse"/>
|
|
959
|
+
</restriction>
|
|
960
|
+
</simpleType>
|
|
961
|
+
<simpleType name="PaymentInstrumentState">
|
|
962
|
+
<restriction base="xsd:string">
|
|
963
|
+
<enumeration value="_expired"/>
|
|
964
|
+
<enumeration value="_invalid"/>
|
|
965
|
+
<enumeration value="_unknown"/>
|
|
966
|
+
<enumeration value="_verified"/>
|
|
967
|
+
</restriction>
|
|
968
|
+
</simpleType>
|
|
969
|
+
<simpleType name="PaymentInstrumentSupportedOperation">
|
|
970
|
+
<restriction base="xsd:string">
|
|
971
|
+
<enumeration value="_authorization"/>
|
|
972
|
+
<enumeration value="_capture"/>
|
|
973
|
+
<enumeration value="_sale"/>
|
|
974
|
+
<enumeration value="_credit"/>
|
|
975
|
+
<enumeration value="_refund"/>
|
|
976
|
+
<enumeration value="_override"/>
|
|
977
|
+
<enumeration value="_void"/>
|
|
978
|
+
<enumeration value="_refresh"/>
|
|
979
|
+
</restriction>
|
|
980
|
+
</simpleType>
|
|
981
|
+
<simpleType name="TokenFamily">
|
|
982
|
+
<restriction base="xsd:string">
|
|
983
|
+
<enumeration value="_accessWorldpay"/>
|
|
984
|
+
<enumeration value="_adyen"/>
|
|
985
|
+
<enumeration value="_altaPay"/>
|
|
986
|
+
<enumeration value="_blueSnap"/>
|
|
987
|
+
<enumeration value="_cyberSource"/>
|
|
988
|
+
<enumeration value="_eightQuanta"/>
|
|
989
|
+
<enumeration value="_eway"/>
|
|
990
|
+
<enumeration value="_fortis"/>
|
|
991
|
+
<enumeration value="_freedomPay"/>
|
|
992
|
+
<enumeration value="_merchantESolutions"/>
|
|
993
|
+
<enumeration value="_payCorp"/>
|
|
994
|
+
<enumeration value="_payPal"/>
|
|
995
|
+
<enumeration value="_payu"/>
|
|
996
|
+
<enumeration value="_securePay"/>
|
|
997
|
+
<enumeration value="_square"/>
|
|
998
|
+
<enumeration value="_sumUp"/>
|
|
999
|
+
<enumeration value="_versapay"/>
|
|
1000
|
+
<enumeration value="_windcave"/>
|
|
1001
|
+
<enumeration value="_worldpay"/>
|
|
1002
|
+
<enumeration value="_worldPayIntegratedPayments"/>
|
|
1003
|
+
</restriction>
|
|
1004
|
+
</simpleType>
|
|
1005
|
+
<simpleType name="PaymentCardBrand">
|
|
1006
|
+
<restriction base="xsd:string">
|
|
1007
|
+
<enumeration value="_amex"/>
|
|
1008
|
+
<enumeration value="_cirrus"/>
|
|
1009
|
+
<enumeration value="_dinersClub"/>
|
|
1010
|
+
<enumeration value="_discover"/>
|
|
1011
|
+
<enumeration value="_jcb"/>
|
|
1012
|
+
<enumeration value="_laser"/>
|
|
1013
|
+
<enumeration value="_localCard"/>
|
|
1014
|
+
<enumeration value="_maestro"/>
|
|
1015
|
+
<enumeration value="_masterCard"/>
|
|
1016
|
+
<enumeration value="_solo"/>
|
|
1017
|
+
<enumeration value="_unionPay"/>
|
|
1018
|
+
<enumeration value="_visa"/>
|
|
1019
|
+
</restriction>
|
|
1020
|
+
</simpleType>
|
|
1021
|
+
<simpleType name="PaymentCardType">
|
|
1022
|
+
<restriction base="xsd:string">
|
|
1023
|
+
<enumeration value="_credit"/>
|
|
1024
|
+
<enumeration value="_debit"/>
|
|
1025
|
+
</restriction>
|
|
1026
|
+
</simpleType>
|
|
1027
|
+
<simpleType name="PaymentInstrumentType">
|
|
1028
|
+
<restriction base="xsd:string">
|
|
1029
|
+
<enumeration value="_paymentCard"/>
|
|
1030
|
+
<enumeration value="_generalToken"/>
|
|
1031
|
+
<enumeration value="_paymentCardToken"/>
|
|
1032
|
+
<enumeration value="_paymentCardSwipe"/>
|
|
1033
|
+
<enumeration value="_emv"/>
|
|
1034
|
+
<enumeration value="_externalCheckout"/>
|
|
1035
|
+
<enumeration value="_cash"/>
|
|
1036
|
+
<enumeration value="_check"/>
|
|
1037
|
+
<enumeration value="_offline"/>
|
|
1038
|
+
<enumeration value="_payByReference"/>
|
|
1039
|
+
<enumeration value="_ach"/>
|
|
1040
|
+
<enumeration value="_payPal"/>
|
|
1041
|
+
</restriction>
|
|
1042
|
+
</simpleType>
|
|
1043
|
+
</xsd:schema>
|